Normalize quoting and whitespace in compose files

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.
This commit is contained in:
2026-02-12 20:44:54 +02:00
parent 886878797d
commit 9cf711fc67
27 changed files with 52 additions and 103 deletions

View File

@@ -3,7 +3,7 @@ services:
image: ghcr.io/ofkm/arcane:latest image: ghcr.io/ofkm/arcane:latest
container_name: arcane container_name: arcane
ports: ports:
- '3000:3000' - "3000:3000"
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
- C:\Docker\AppData\arcane:/app/data - C:\Docker\AppData\arcane:/app/data
@@ -17,4 +17,4 @@ services:
# - DOCKER_GID=998 # - DOCKER_GID=998
# Optional: For local HTTP testing only # Optional: For local HTTP testing only
# - PUBLIC_ALLOW_INSECURE_COOKIES=true # - PUBLIC_ALLOW_INSECURE_COOKIES=true
restart: unless-stopped restart: unless-stopped

View File

@@ -1,5 +1,4 @@
--- ---
services: services:
postgresql: postgresql:
image: docker.io/library/postgres:16-alpine image: docker.io/library/postgres:16-alpine

View File

@@ -15,4 +15,4 @@ services:
- "802:80" - "802:80"
volumes: volumes:
- D:\Users\MohandL3G\Docker\AppData\baikal\config:/var/www/baikal/config - D:\Users\MohandL3G\Docker\AppData\baikal\config:/var/www/baikal/config
- D:\Users\MohandL3G\Docker\AppData\baikal\Specific:/var/www/baikal/Specific - D:\Users\MohandL3G\Docker\AppData\baikal\Specific:/var/www/baikal/Specific

View File

@@ -8,4 +8,4 @@ services:
ports: ports:
- 8001:8000 - 8001:8000
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock

View File

@@ -24,4 +24,3 @@ services:
labels: labels:
- "diun.enable=true" - "diun.enable=true"
restart: unless-stopped restart: unless-stopped

View File

@@ -8,7 +8,7 @@ services:
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
- C:\Docker\AppData\Dockge\data:/app/data - C:\Docker\AppData\Dockge\data:/app/data
# If you want to use private registries, you need to share the auth file with Dockge: # If you want to use private registries, you need to share the auth file with Dockge:
# - /root/.docker/:/root/.docker # - /root/.docker/:/root/.docker
@@ -19,4 +19,4 @@ services:
- C:\Docker\AppData\Dockge\stacks:/opt/stacks - C:\Docker\AppData\Dockge\stacks:/opt/stacks
environment: environment:
# Tell Dockge where is your stacks directory # Tell Dockge where is your stacks directory
- DOCKGE_STACKS_DIR=/opt/stacks - DOCKGE_STACKS_DIR=/opt/stacks

View File

@@ -18,4 +18,4 @@ services:
- C:\Docker:/source/dockerdata - C:\Docker:/source/dockerdata
ports: ports:
- 8200:8200 - 8200:8200
restart: unless-stopped restart: unless-stopped

View File

@@ -1,4 +1,3 @@
services: services:
filebrowser: filebrowser:
environment: environment:
@@ -17,8 +16,8 @@ services:
# Advanced: If you plan to run with a different user besides root or filebrowser, you will need to mount a tmp directory. # Advanced: If you plan to run with a different user besides root or filebrowser, you will need to mount a tmp directory.
# - './tmp/:/home/filebrowser/tmp/' # - './tmp/:/home/filebrowser/tmp/'
ports: ports:
- '8081:80' # the left 80 is the port **you will use** to access. The right 80 is the container port that **must match the config.yaml** - "8081:80" # the left 80 is the port **you will use** to access. The right 80 is the container port that **must match the config.yaml**
image: gtstef/filebrowser image: gtstef/filebrowser
# Optionally run as non-root filebrowser user # Optionally run as non-root filebrowser user
#user: filebrowser #user: filebrowser
restart: unless-stopped restart: unless-stopped

View File

@@ -13,4 +13,4 @@ services:
- 8123:8123 - 8123:8123
#devices: #devices:
# - /path/to/device:/path/to/device # - /path/to/device:/path/to/device
restart: unless-stopped restart: unless-stopped

View File

@@ -9,4 +9,4 @@ services:
- C:\Docker\AppData\homepage\images:/app/public/images - C:\Docker\AppData\homepage\images:/app/public/images
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations, see alternative methods - /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations, see alternative methods
environment: environment:
HOMEPAGE_ALLOWED_HOSTS: "*" # required, may need port. See gethomepage.dev/installation/#homepage_allowed_hosts HOMEPAGE_ALLOWED_HOSTS: "*" # required, may need port. See gethomepage.dev/installation/#homepage_allowed_hosts

View File

@@ -23,7 +23,7 @@ services:
env_file: env_file:
- .env - .env
ports: ports:
- '2283:2283' - "2283:2283"
depends_on: depends_on:
- redis - redis
- database - database
@@ -61,7 +61,7 @@ services:
POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME} POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME} POSTGRES_DB: ${DB_DATABASE_NAME}
POSTGRES_INITDB_ARGS: '--data-checksums' POSTGRES_INITDB_ARGS: "--data-checksums"
# Uncomment the DB_STORAGE_TYPE: 'HDD' var if your database isn't stored on SSDs # Uncomment the DB_STORAGE_TYPE: 'HDD' var if your database isn't stored on SSDs
# DB_STORAGE_TYPE: 'HDD' # DB_STORAGE_TYPE: 'HDD'
volumes: volumes:

View File

@@ -1,58 +0,0 @@
#
# WARNING: To install Immich, follow our guide: https://immich.app/docs/install/docker-compose
#
# Make sure to use the docker-compose.yml of the current release:
#
# https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml
#
# The compose file on main may not be compatible with the latest release.
name: immich
services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
# extends:
# file: hwaccel.transcoding.yml
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
volumes:
# Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
- ${UPLOAD_LOCATION}:/data
- /etc/localtime:/etc/localtime:ro
env_file:
- .env
ports:
- '2283:2283'
depends_on:
- redis
- database
restart: always
healthcheck:
disable: false
redis:
container_name: immich_redis
image: docker.io/valkey/valkey:8-bookworm@sha256:facc1d2c3462975c34e10fccb167bfa92b0e0dbd992fc282c29a61c3243afb11
healthcheck:
test: redis-cli ping || exit 1
restart: always
database:
container_name: immich_postgres
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0@sha256:32324a2f41df5de9efe1af166b7008c3f55646f8d0e00d9550c16c9822366b4a
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME}
POSTGRES_INITDB_ARGS: '--data-checksums'
# Uncomment the DB_STORAGE_TYPE: 'HDD' var if your database isn't stored on SSDs
# DB_STORAGE_TYPE: 'HDD'
volumes:
# Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file
- ${DB_DATA_LOCATION}:/var/lib/postgresql/data
shm_size: 128mb
restart: always
volumes:
model-cache:

View File

@@ -13,7 +13,7 @@ services:
volumes: volumes:
- /lib/firmware/mali_csffw.bin:/lib/firmware/mali_csffw.bin:ro # Mali firmware for your chipset (not always required depending on the driver) - /lib/firmware/mali_csffw.bin:/lib/firmware/mali_csffw.bin:ro # Mali firmware for your chipset (not always required depending on the driver)
- /usr/lib/libmali.so:/usr/lib/libmali.so:ro # Mali driver for your chipset (always required) - /usr/lib/libmali.so:/usr/lib/libmali.so:ro # Mali driver for your chipset (always required)
rknn: rknn:
security_opt: security_opt:
- systempaths=unconfined - systempaths=unconfined
@@ -42,7 +42,7 @@ services:
openvino: openvino:
device_cgroup_rules: device_cgroup_rules:
- 'c 189:* rmw' - "c 189:* rmw"
devices: devices:
- /dev/dri:/dev/dri - /dev/dri:/dev/dri
volumes: volumes:

View File

@@ -26,4 +26,4 @@ services:
count: 1 count: 1
capabilities: capabilities:
- gpu - gpu
restart: unless-stopped restart: unless-stopped

View File

@@ -17,4 +17,4 @@ services:
timeout: 3s timeout: 3s
interval: 15s interval: 15s
retries: 3 retries: 3
restart: unless-stopped restart: unless-stopped

View File

@@ -3,22 +3,22 @@ services:
image: ghcr.io/woahai321/list-sync:main image: ghcr.io/woahai321/list-sync:main
container_name: listsync-full container_name: listsync-full
ports: ports:
# Frontend (Next.js Dashboard) # Frontend (Next.js Dashboard)
- "3222:3222" - "3222:3222"
# Backend API (FastAPI) # Backend API (FastAPI)
- "4222:4222" - "4222:4222"
environment: environment:
# Timezone Configuration (set to Europe/London for BST/GMT, change as needed) # Timezone Configuration (set to Europe/London for BST/GMT, change as needed)
- TZ=${TZ:-GMT} - TZ=${TZ:-GMT}
# Overseerr Configuration # Overseerr Configuration
- OVERSEERR_URL=${OVERSEERR_URL} - OVERSEERR_URL=${OVERSEERR_URL}
- OVERSEERR_API_KEY=${OVERSEERR_API_KEY} - OVERSEERR_API_KEY=${OVERSEERR_API_KEY}
- OVERSEERR_USER_ID=${OVERSEERR_USER_ID:-1} - OVERSEERR_USER_ID=${OVERSEERR_USER_ID:-1}
- SYNC_INTERVAL=${SYNC_INTERVAL:-24} - SYNC_INTERVAL=${SYNC_INTERVAL:-24}
- AUTOMATED_MODE=true - AUTOMATED_MODE=true
- OVERSEERR_4K=${OVERSEERR_4K:-false} - OVERSEERR_4K=${OVERSEERR_4K:-false}
# List Configuration (comma-separated) # List Configuration (comma-separated)
- IMDB_LISTS=${IMDB_LISTS} - IMDB_LISTS=${IMDB_LISTS}
- TRAKT_LISTS=${TRAKT_LISTS} - TRAKT_LISTS=${TRAKT_LISTS}
@@ -26,14 +26,14 @@ services:
- MDBLIST_LISTS=${MDBLIST_LISTS} - MDBLIST_LISTS=${MDBLIST_LISTS}
- STEVENLU_LISTS=${STEVENLU_LISTS} - STEVENLU_LISTS=${STEVENLU_LISTS}
- TRAKT_SPECIAL_LISTS=${TRAKT_SPECIAL_LISTS} - TRAKT_SPECIAL_LISTS=${TRAKT_SPECIAL_LISTS}
- TRAKT_SPECIAL_ITEMS_LIMIT=${TRAKT_SPECIAL_ITEMS_LIMIT} - TRAKT_SPECIAL_ITEMS_LIMIT=${TRAKT_SPECIAL_ITEMS_LIMIT}
# Optional Discord webhook # Optional Discord webhook
- DISCORD_WEBHOOK_URL=${DISCORD_WEBHOOK_URL} - DISCORD_WEBHOOK_URL=${DISCORD_WEBHOOK_URL}
# Internal API URL for frontend # Internal API URL for frontend
- NEXT_PUBLIC_API_URL=${NEXT_PUBLIC_API_URL:-http://0.0.0.0:4222/api} - NEXT_PUBLIC_API_URL=${NEXT_PUBLIC_API_URL:-http://0.0.0.0:4222/api}
# Docker-specific settings # Docker-specific settings
- RUNNING_IN_DOCKER=true - RUNNING_IN_DOCKER=true
- NO_SANDBOX=1 - NO_SANDBOX=1
@@ -45,9 +45,19 @@ services:
- C:\Docker\Compose\ListSync\.env:/usr/src/app/.env - C:\Docker\Compose\ListSync\.env:/usr/src/app/.env
# Optional: Mount logs for debugging # Optional: Mount logs for debugging
- C:\Docker\AppData\listsync\logs:/var/log/supervisor - C:\Docker\AppData\listsync\logs:/var/log/supervisor
restart: unless-stopped restart: unless-stopped
healthcheck: healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:4222/api/system/health", "&&", "curl", "-f", "http://localhost:3222"] test:
[
"CMD",
"curl",
"-f",
"http://localhost:4222/api/system/health",
"&&",
"curl",
"-f",
"http://localhost:3222",
]
interval: 30s interval: 30s
timeout: 10s timeout: 10s
retries: 3 retries: 3
@@ -56,4 +66,4 @@ services:
# - Core sync service (python -m list_sync) # - Core sync service (python -m list_sync)
# - FastAPI backend (port 4222) # - FastAPI backend (port 4222)
# - Next.js frontend (port 3222) # - Next.js frontend (port 3222)
# All managed by supervisor for reliability # All managed by supervisor for reliability

View File

@@ -1,14 +1,14 @@
name: nginxproxymanager name: nginxproxymanager
services: services:
app: app:
image: 'jc21/nginx-proxy-manager:latest' image: "jc21/nginx-proxy-manager:latest"
restart: unless-stopped restart: unless-stopped
environment: environment:
TZ: Africa/Tripoli TZ: Africa/Tripoli
ports: ports:
- '80:80' - "80:80"
- '81:81' - "81:81"
- '443:443' - "443:443"
volumes: volumes:
- C:\Data\AppData\nginxproxymanager\data:/data - C:\Data\AppData\nginxproxymanager\data:/data
- C:\Data\AppData\nginxproxymanager\etc\letsencrypt:/etc/letsencrypt - C:\Data\AppData\nginxproxymanager\etc\letsencrypt:/etc/letsencrypt

View File

@@ -8,4 +8,4 @@ services:
- PANGOLIN_ENDPOINT=https://pangolin.mohandl3g.ly - PANGOLIN_ENDPOINT=https://pangolin.mohandl3g.ly
- NEWT_ID=crcnpqj8nnlr2bo - NEWT_ID=crcnpqj8nnlr2bo
- NEWT_SECRET=6pudccxon6g447lcr0z9v9favu3xca4ornn4x9avrkv6jr6b - NEWT_SECRET=6pudccxon6g447lcr0z9v9favu3xca4ornn4x9avrkv6jr6b
network_mode: host network_mode: host

View File

@@ -13,4 +13,4 @@ services:
ports: ports:
- 1443:443 - 1443:443
- 180:80 - 180:80
restart: unless-stopped restart: unless-stopped

View File

@@ -8,4 +8,4 @@ services:
restart: always restart: always
volumes: volumes:
- C:\Data\AppData\nexterm\data:/app/data - C:\Data\AppData\nexterm\data:/app/data
image: germannewsmaker/nexterm:latest image: germannewsmaker/nexterm:latest

View File

@@ -56,4 +56,4 @@ services:
env_file: docker-compose.env env_file: docker-compose.env
environment: environment:
PAPERLESS_REDIS: redis://broker:6379 PAPERLESS_REDIS: redis://broker:6379
PAPERLESS_DBHOST: db PAPERLESS_DBHOST: db

View File

@@ -12,4 +12,4 @@ services:
networks: networks:
default: default:
name: portainer_network name: portainer_network

View File

@@ -13,4 +13,4 @@ services:
- C:\Docker\AppData\sonarr\downloads:/downloads #optional - C:\Docker\AppData\sonarr\downloads:/downloads #optional
ports: ports:
- 8989:8989 - 8989:8989
restart: unless-stopped restart: unless-stopped

View File

@@ -49,6 +49,6 @@ services:
networks: networks:
- tugtainer - tugtainer
ports: ports:
- '9412:80' - "9412:80"
labels: labels:
dev.quenary.tugtainer.protected: True dev.quenary.tugtainer.protected: True

View File

@@ -12,4 +12,4 @@ services:
volumes: volumes:
- C:\Users\MohandL3G\Downloads\Metube:/downloads - C:\Users\MohandL3G\Downloads\Metube:/downloads
- C:\Data\AppData\metube\state:/metube_state - C:\Data\AppData\metube\state:/metube_state
- C:\Data\AppData\metube\cookies:/cookies - C:\Data\AppData\metube\cookies:/cookies

View File

@@ -55,4 +55,4 @@ services:
networks: networks:
default: default:
name: n8n_default name: n8n_default

View File

@@ -16,4 +16,4 @@ services:
- 8080:8080 - 8080:8080
- 6881:6881 - 6881:6881
- 6881:6881/udp - 6881:6881/udp
restart: unless-stopped restart: unless-stopped