Files
arcane_template/arcane/docker-compose.yml

22 lines
555 B
YAML

version: "2.1"
services:
arcane:
image: ghcr.io/getarcaneapp/arcane:latest
container_name: arcane
ports:
- "3552:3552"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- arcane-data:/app/data
- /home/gilles/docker:/app/data/projects
environment:
- APP_URL=http://localhost:3552
- PUID=1000
- PGID=1000
- ENCRYPTION_KEY=r+2S6wUaFpCcb85A5brwAxYu2mJHdiXtu3UWJDJGfVI=
- JWT_SECRET=2sdf3mD2x5SkqFw3svFsdNXvzGCLBinv6DRbDCAe81A=
restart: unless-stopped
volumes:
arcane-data: