Standardize formatting across multiple docker-compose.yml files: convert single quotes to double quotes for ports/args, fix inconsistent newlines at EOF, remove trailing spaces and stray blank lines, and tidy comments. Reformat ListSync healthcheck into a YAML sequence for clarity. Remove the obsolete Immich/docker-compose.yml.old file. These are non-functional cleanup changes to improve consistency and readability.
21 lines
664 B
YAML
21 lines
664 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
|