Skip to content

Edge

AutoCare Edge is an Edge computing platform that incorporates various models to analyze real-time video.

Download

AutoCare Edge is a web-based application that runs using Docker.

Environment

OS Hardware
Ubuntu 20.04 Nvidia RTX 3070 or higher
Nvidia driver 525 or higher

Docker download

docker pull snuailab/autocare-edge:1.7.1-gpu

Execute Program

To address multiple environment configurations simultaneously, we use Docker Compose. Below is an example of creating a docker-compose.yml file

version: "3.9"

services:
  autocare_dx_standalone:
    stdin_open: true
    tty: true
    restart: unless-stopped
    image: snuailab/autocare-edge:1.7.1-gpu
    network_mode: host
    volumes:
      - /opt/autocare/dx:/opt/autocare/dx/volume
      - /tmp/.X11-unix:/tmp/.X11-unix
    deploy:
      resources:
        reservations:
          devices:
            - driver: nvidia
              device_ids: ["0"]
              capabilities: [gpu]
    environment:
      - DISPLAY=${DISPLAY}
      - NATS_URI=nats://localhost:4222
      - NATS_WEBSOCKET_PORT=442
    entrypoint: /opt/autocare/dx/run/scripts/entrypoint.sh

If you have created a docker-compose.yml file, you should run the following command from the location where the file is located

docker compose up -d

Once the execution is complete, you can access it at http://127.0.0.1:8400/.

License

To run AutoCare Edge, a license is required. Please request the license via this link

Request a License

Example of usage