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
container_name: arcane
ports:
- '3000:3000'
- "3000:3000"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- C:\Docker\AppData\arcane:/app/data

View File

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

View File

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

View File

@@ -1,4 +1,3 @@
services:
filebrowser:
environment:
@@ -17,7 +16,7 @@ services:
# 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/'
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
# Optionally run as non-root filebrowser user
#user: filebrowser

View File

@@ -23,7 +23,7 @@ services:
env_file:
- .env
ports:
- '2283:2283'
- "2283:2283"
depends_on:
- redis
- database
@@ -61,7 +61,7 @@ services:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
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
# DB_STORAGE_TYPE: 'HDD'
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

@@ -42,7 +42,7 @@ services:
openvino:
device_cgroup_rules:
- 'c 189:* rmw'
- "c 189:* rmw"
devices:
- /dev/dri:/dev/dri
volumes:

View File

@@ -47,7 +47,17 @@ services:
- C:\Docker\AppData\listsync\logs:/var/log/supervisor
restart: unless-stopped
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
timeout: 10s
retries: 3

View File

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

View File

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