EdgeIQ Coda packaged as a docker container to run at the edge.
4.7K
EdgeIQ Coda is a lightweight, secure IoT edge agent designed for industrial and commercial IoT deployments. Optimized for resource-constrained environments, Coda provides reliable device connectivity, data collection, and secure communication with the EdgeIQ cloud platform.
For more details, review our public docs at https://dev.edgeiq.io/docs/installation-using-docker.
docker run -d \
-e EDGE_COMPANY=your-company \
-e EDGE_UNIQUE_ID=your-device-id \
--name coda-agent \
edgeiq/coda:latest
Required Environment Variables:
EDGE_COMPANY: Your EdgeIQ company identifierEDGE_UNIQUE_ID: Unique identifier for your deviceFor production environments, use a specific version tag:
docker run -d \
-e EDGE_COMPANY=your-company \
-e EDGE_UNIQUE_ID=your-device-id \
--name coda-agent \
--restart unless-stopped \
edgeiq/coda:v4.1.5
Uses EdgeIQ production endpoints with basic authentication:
docker run -d \
-e EDGE_COMPANY=your-company \
-e EDGE_UNIQUE_ID=your-device-id \
--name coda-agent \
edgeiq/coda:latest
Mount a custom configuration file for advanced settings:
docker run -d \
-e EDGE_COMPANY=your-company \
-e EDGE_UNIQUE_ID=your-device-id \
-v /path/to/config.json:/opt/edge/conf/conf.json \
--name coda-agent \
edgeiq/coda:latest
Content type
Image
Digest
sha256:c688b2140…
Size
84.2 MB
Last updated
7 months ago
docker pull edgeiq/coda