Closes - Deno requirement: https://github.com/jmbannon/ytdl-sub/issues/1340 - yt-dlp announcement: https://github.com/yt-dlp/yt-dlp/issues/14404 - Docker cron log double-logging: https://github.com/jmbannon/ytdl-sub/issues/1202 (thanks @timetocode for https://github.com/jmbannon/ytdl-sub/pull/1330 !) - Missing pip dependency when updating yt-dlp: https://github.com/jmbannon/ytdl-sub/issues/1346
50 lines
1.3 KiB
YAML
50 lines
1.3 KiB
YAML
services:
|
|
ytdl-sub-gui:
|
|
build:
|
|
context: "../"
|
|
dockerfile: "./Dockerfile.gui"
|
|
image: "ytdl-sub-gui:local"
|
|
container_name: "ytdl-sub-gui"
|
|
environment:
|
|
PUID: "1000"
|
|
PGID: "1000"
|
|
TZ: "America/Los_Angeles"
|
|
CRON_SCHEDULE: '*/1 * * * *'
|
|
CRON_RUN_ON_START: "true"
|
|
UPDATE_YT_DLP_ON_START: "stable"
|
|
volumes:
|
|
- "./volumes/ytdl-sub-gui/:/config/"
|
|
ports:
|
|
- "8443:8443"
|
|
restart: "unless-stopped"
|
|
ytdl-sub-headless:
|
|
build:
|
|
context: "../"
|
|
image: "ytdl-sub:local"
|
|
container_name: "ytdl-sub-headless"
|
|
environment:
|
|
PUID: "1000"
|
|
PGID: "1000"
|
|
TZ: "America/Los_Angeles"
|
|
CRON_SCHEDULE: '*/1 * * * *'
|
|
CRON_RUN_ON_START: "true"
|
|
UPDATE_YT_DLP_ON_START: "stable"
|
|
volumes:
|
|
- "./volumes/ytdl-sub-headless/:/config/"
|
|
restart: "unless-stopped"
|
|
ytdl-sub-ubuntu:
|
|
build:
|
|
context: "../"
|
|
dockerfile: "./Dockerfile.ubuntu"
|
|
image: "ytdl-sub-ubuntu:local"
|
|
container_name: "ytdl-sub-ubuntu"
|
|
environment:
|
|
PUID: "1000"
|
|
PGID: "1000"
|
|
TZ: "America/Los_Angeles"
|
|
CRON_SCHEDULE: '*/1 * * * *'
|
|
CRON_RUN_ON_START: "true"
|
|
UPDATE_YT_DLP_ON_START: "stable"
|
|
volumes:
|
|
- "./volumes/ytdl-sub-ubuntu/:/config/"
|
|
restart: "unless-stopped"
|