1
0
Fork 0
1Panel-Appstore/apps/arcane/latest/docker-compose.yml

20 lines
459 B
YAML

services:
arcane:
image: ghcr.io/ofkm/arcane:latest
pull_policy: always
container_name: ${CONTAINER_NAME}
ports:
- "${PANEL_APP_PORT_HTTP}:3000"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/app/data
environment:
- APP_ENV=production
- PUID=2000
- PGID=2000
- PUBLIC_SESSION_SECRET=${PUBLIC_SESSION_SECRET}
restart: always
networks:
1panel-network:
external: true