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.
16 lines
429 B
YAML
16 lines
429 B
YAML
name: metube
|
|
services:
|
|
metube:
|
|
image: ghcr.io/alexta69/metube
|
|
container_name: metube
|
|
restart: unless-stopped
|
|
environment:
|
|
- STATE_DIR=/metube_state
|
|
- YTDL_OPTIONS={"cookiefile":"/cookies/cookies.txt"}
|
|
ports:
|
|
- "8081:8081"
|
|
volumes:
|
|
- C:\Users\MohandL3G\Downloads\Metube:/downloads
|
|
- C:\Data\AppData\metube\state:/metube_state
|
|
- C:\Data\AppData\metube\cookies:/cookies
|