Installation

The fastest way to get AutoMD running. A single container, zero external dependencies.

docker run -d \
  --name automd \
  -p 3000:3000 \
  -v automd-data:/data \
  ghcr.io/automd/automd:latest

Docker Compose

For production deployments with persistent storage and automatic restarts.

version: "3.8"
services:
  automd:
    image: ghcr.io/automd/automd:latest
    ports:
      - "3000:3000"
    volumes:
      - ./data:/data
    restart: unless-stopped

Building from source

Clone the repository and build locally:

git clone https://github.com/automd/automd.git
cd automd
npm install
npm run build
npm start

Info

More detailed installation and configuration options coming soon.