diff --git a/arcane_compose.yaml b/arcane_compose.yaml new file mode 100644 index 0000000..ca9c0f0 --- /dev/null +++ b/arcane_compose.yaml @@ -0,0 +1,22 @@ +services: + arcane: + image: ghcr.io/getarcaneapp/manager:latest + container_name: arcane + ports: + - '9443:3552' + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - arcane-data:/app/data + - /opt/docker:/opt/docker # <- mismo path dentro y fuera + environment: + - APP_URL=http://localhost:9443 + - PUID=1000 + - PGID=1000 + - ENCRYPTION_KEY='' + - JWT_SECRET='' + - PROJECTS_DIRECTORY=/opt/docker + cgroup: host + restart: unless-stopped + +volumes: + arcane-data: