20 lines
663 B
YAML
20 lines
663 B
YAML
services:
|
|
arcane:
|
|
image: ghcr.io/ofkm/arcane:latest
|
|
container_name: arcane
|
|
ports:
|
|
- '3000:3000'
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- C:\Docker\AppData\arcane:/app/data
|
|
environment:
|
|
- APP_ENV=production # Required
|
|
- PUBLIC_SESSION_SECRET=your_super_strong_random_secret_here # Generate: openssl rand -base64 32
|
|
# Optional: Match your host user for permissions
|
|
# - PUID=1000
|
|
# - PGID=1000
|
|
# Optional: Set if Docker access fails
|
|
# - DOCKER_GID=998
|
|
# Optional: For local HTTP testing only
|
|
# - PUBLIC_ALLOW_INSECURE_COOKIES=true
|
|
restart: unless-stopped |