[DOCKER] Do not include cron by default

This commit is contained in:
Jesse Bannon 2023-11-03 13:08:55 -07:00
parent 33a8da9afc
commit 26a61babe6
2 changed files with 4 additions and 1 deletions

View file

@ -81,7 +81,6 @@ RUN mkdir -p /config && \
ENV YTDL_SUB_TYPE="gui" \ ENV YTDL_SUB_TYPE="gui" \
EDITOR="nano" \ EDITOR="nano" \
HOME="/config" \ HOME="/config" \
DOCKER_MODS=linuxserver/mods:universal-cron \
DEFAULT_WORKSPACE=/config/ytdl-sub-configs DEFAULT_WORKSPACE=/config/ytdl-sub-configs
VOLUME /config VOLUME /config

View file

@ -37,6 +37,7 @@ After starting, code-server will be running at http://localhost:8443/
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
- TZ=America/Los_Angeles - TZ=America/Los_Angeles
- DOCKER_MODS=linuxserver/mods:universal-cron
volumes: volumes:
- <path/to/ytdl-sub/config>:/config - <path/to/ytdl-sub/config>:/config
- <path/to/tv_shows>:/tv_shows # optional - <path/to/tv_shows>:/tv_shows # optional
@ -99,6 +100,7 @@ ____
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
- TZ=America/Los_Angeles - TZ=America/Los_Angeles
- DOCKER_MODS=linuxserver/mods:universal-cron
volumes: volumes:
- <path/to/ytdl-sub/config>:/config - <path/to/ytdl-sub/config>:/config
- <path/to/tv_shows>:/tv_shows # optional - <path/to/tv_shows>:/tv_shows # optional
@ -124,6 +126,7 @@ ____
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
- TZ=America/Los_Angeles - TZ=America/Los_Angeles
- DOCKER_MODS=linuxserver/mods:universal-cron
- NVIDIA_DRIVER_CAPABILITIES=all # Nvidia ENV args - NVIDIA_DRIVER_CAPABILITIES=all # Nvidia ENV args
- NVIDIA_VISIBLE_DEVICES=all - NVIDIA_VISIBLE_DEVICES=all
volumes: volumes:
@ -150,6 +153,7 @@ Docker
-e PUID=1000 \ -e PUID=1000 \
-e PGID=1000 \ -e PGID=1000 \
-e TZ=America/Los_Angeles \ -e TZ=America/Los_Angeles \
-e DOCKER_MODS=linuxserver/mods:universal-cron \
-p 8443:8443 \ -p 8443:8443 \
-v <path/to/ytdl-sub/config>:/config \ -v <path/to/ytdl-sub/config>:/config \
-v <OPTIONAL/path/to/tv_shows>:/tv_shows \ -v <OPTIONAL/path/to/tv_shows>:/tv_shows \