Files
docker-compose/arcane_compose.yaml
T

23 lines
532 B
YAML

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: