21 lines
545 B
YAML
21 lines
545 B
YAML
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
|
|
- /opt/projects:/app/data/projects
|
|
environment:
|
|
- APP_URL=http://arcane1.mreschke.net:3552
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- ENCRYPTION_KEY=FbAK6DaqI1EEA5bEWPyBLetsuY748DbqWzw4a3/q3G0=
|
|
- JWT_SECRET=flLR6aTtJSQ+PgxlHW5pUrE6LlBwXxbnvwy5g4dFUS0=
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
arcane-data:
|