1
0
Fork 0

Remove secrets from dockers configuration

This commit is contained in:
xavier 2024-07-09 15:20:00 +02:00
parent eb406531c0
commit 300958d0e3
13 changed files with 53 additions and 43 deletions

View File

@ -14,7 +14,6 @@ ownServices/AfterDownloadCarerByFinish/config
ownServices/AfterFilebotMoveProcessor/config ownServices/AfterFilebotMoveProcessor/config
ownServices/ArrModificationCapturer ownServices/ArrModificationCapturer
ownServices/SonarrQueueFixer/config ownServices/SonarrQueueFixer/config
ownServices/SonarrQueueFixer/.env
overseerr/config overseerr/config
plex/config plex/config
prowlarr/config prowlarr/config
@ -25,3 +24,14 @@ radarr/config
sonarr/config sonarr/config
tautulli/config tautulli/config
ownServices/SonarrQueueFixer/.env
plex/.env
radarr/.env
filebot/desktop/.env
homarr/.env
overseerr/.env
ownServices/AfterFilebotMoveProcessor/.env
prowlarr/.env
qbit/.env
qbit/manager/.env
tautulli/.env

View File

@ -6,12 +6,12 @@ services:
image: rednoah/filebot:xpra image: rednoah/filebot:xpra
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- /volume1/data:/data - ${HOST_DATA_FOLDER}:/data
- ./config/filebot:/data/filebot - ./config/filebot:/data/filebot
- ../presets:/presets - ../presets:/presets
- ../xattr:/xattr - ../xattr:/xattr
environment: environment:
- PUID=1026 - PUID=${USER}
- PGID=100 - PGID=${GROUP}
ports: ports:
- 5454:5454 - ${HOST_PORT}:5454

View File

@ -7,14 +7,14 @@ services:
environment: environment:
- DEFAULT_COLOR_SCHEME=dark - DEFAULT_COLOR_SCHEME=dark
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration - ${HOST_DOCKER_SOCK}:/var/run/docker.sock # Optional, only if you want docker integration
- ./configs:/app/data/configs - ./configs:/app/data/configs
- ./icons:/app/public/icons - ./icons:/app/public/icons
- ./data:/data - ./data:/data
- ./imgs:/imgs - ./imgs:/imgs
ports: ports:
- '7575:7575' - ${HOST_PORT}:7575
extra_hosts: extra_hosts:
- "host.docker.internal:host-gateway" - "host.docker.internal:host-gateway"
dns: dns:
- 192.168.1.22 - ${DNS_IP}

View File

@ -6,13 +6,13 @@ services:
image: lscr.io/linuxserver/overseerr:latest image: lscr.io/linuxserver/overseerr:latest
container_name: mangrana_overseerr container_name: mangrana_overseerr
environment: environment:
- PUID=1026 - PUID=${USER}
- PGID=100 - PGID=${GROUP}
- TZ=Europe/Madrid - TZ=Europe/Madrid
volumes: volumes:
- ./config:/config - ./config:/config
ports: ports:
- 5055:5055 - ${HOST_PORT}:5055
restart: unless-stopped restart: unless-stopped
extra_hosts: extra_hosts:
- host.docker.internal:host-gateway - host.docker.internal:host-gateway

View File

@ -5,8 +5,8 @@ services:
container_name: mangrana_java_after_filebot container_name: mangrana_java_after_filebot
image: xeviff/after_filebot_fix:latest image: xeviff/after_filebot_fix:latest
dns: dns:
- 192.168.1.22 - ${DNS_IP}
volumes: volumes:
- /volume1/jobs/logs/filebot:/filebot_logs - ${JOBS_HOST_FOLDER}/logs/filebot:/filebot_logs
- /volume1/jobs:/jobs - ${JOBS_HOST_FOLDER}:/jobs
- ./config:/config - ./config:/config

View File

@ -10,4 +10,4 @@ services:
- TZ=Europe/Madrid - TZ=Europe/Madrid
volumes: volumes:
- ./config:/config - ./config:/config
- /volume1/data:/data - ${HOST_DATA_FOLDER}:/data

View File

@ -11,21 +11,21 @@ services:
security_opt: security_opt:
- no-new-privileges:true - no-new-privileges:true
healthcheck: healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:32400/web test: wget --no-verbose --tries=1 --spider ${HEALTHCHECK_URL}
volumes: volumes:
- ./config:/config - ./config:/config
- ${DOCKERSTORAGEDIR}/media:/data/media:rw - ${HOST_DATA_FOLDER}/media:/data/media:rw
- ${SDSTORAGEDIR}/transcode/plex:/transcode - ${SD_STORAGE}/transcode/plex:/transcode
devices: devices:
- /dev/dri/renderD128:/dev/dri/renderD128 - /dev/dri/renderD128:/dev/dri/renderD128
- /dev/dri/card0:/dev/dri/card0 - /dev/dri/card0:/dev/dri/card0
# tmpfs: # tmpfs: #this is to use the RAM as location for the transcoding buffer. I've disabled it because of possible OutOfMemory errors. If in the future I have more RAM then will be a nice configuration
# - /transcode # - /transcode
environment: environment:
- PUID=1026 - PUID=${USER}
- PGID=100 - PGID=${GROUP}
- VERSION=public - VERSION=public
- TZ=Europe/Madrid - TZ=Europe/Madrid
restart: on-failure:5 restart: on-failure:5
labels: labels:
- "com.centurylinklabs.watchtower.enable=false" - "com.centurylinklabs.watchtower.enable=false" #this is to not let the "dockers-version-auto-upgrader" restart plex at any time (specially when users are streaming)

View File

@ -5,13 +5,13 @@ services:
image: lscr.io/linuxserver/prowlarr:latest image: lscr.io/linuxserver/prowlarr:latest
container_name: mangrana_prowlarr container_name: mangrana_prowlarr
environment: environment:
- PUID=1026 - PUID=${USER}
- PGID=100 - PGID=${GROUP}
- TZ=Europe/Madrid - TZ=Europe/Madrid
volumes: volumes:
- ./config:/config - ./config:/config
ports: ports:
- 9696:9696 - ${HOST_PORT}:9696
restart: unless-stopped restart: unless-stopped
networks: networks:
- qbit_default - qbit_default

View File

@ -5,18 +5,18 @@ services:
image: lscr.io/linuxserver/qbittorrent:4.5.4 image: lscr.io/linuxserver/qbittorrent:4.5.4
container_name: mangrana_qbittorrent container_name: mangrana_qbittorrent
environment: environment:
- PUID=1026 - PUID=${USER}
- PGID=100 - PGID=${GROUP}
- TZ=Europe/Madrid - TZ=Europe/Madrid
- WEBUI_PORT=8080 - WEBUI_PORT=8080
volumes: volumes:
- ./config:/config - ./config:/config
- ./scripts:/scripts - ./scripts:/scripts
- /volume1/data:/data - ${HOST_DATA_FOLDER}:/data
- /volumeUSB1/usbshare/incomplete:/incomplete - ${SD_STORAGE}/incomplete:/incomplete
ports: ports:
- 8081:8080 - ${HOST_WEBUI_PORT}:8080
- 51413:51413 - ${HOST_TRANSFERS_PORT}:51413
restart: unless-stopped restart: unless-stopped
labels: labels:
- "com.centurylinklabs.watchtower.enable=false" - "com.centurylinklabs.watchtower.enable=false"

View File

@ -5,7 +5,7 @@ services:
image: bobokun/qbit_manage image: bobokun/qbit_manage
volumes: volumes:
- ./config:/config:rw - ./config:/config:rw
- /volume1/data:/data:rw - ${HOST_DATA_FOLDER}:/data:rw
environment: environment:
- TZ=Europe/Madrid - TZ=Europe/Madrid
- QBT_SCHEDULE=1440 - QBT_SCHEDULE=1440

View File

@ -5,15 +5,15 @@ services:
image: lscr.io/linuxserver/radarr image: lscr.io/linuxserver/radarr
container_name: mangrana_radarr container_name: mangrana_radarr
environment: environment:
- PUID=1026 - PUID=${USER}
- PGID=100 - PGID=${GROUP}
- TZ=Europe/Madrid - TZ=Europe/Madrid
volumes: volumes:
- ./config:/config - ./config:/config
- ${JOBS_RADARR}:/jobs - ${JOBS_RADARR}:/jobs
- /volume1/data:/data - ${HOST_DATA_FOLDER}:/data
ports: ports:
- 7878:7878 - ${HOST_WEBUI_PORT}:7878
restart: unless-stopped restart: unless-stopped
networks: networks:
- qbit_default - qbit_default

View File

@ -5,15 +5,15 @@ services:
image: lscr.io/linuxserver/sonarr image: lscr.io/linuxserver/sonarr
container_name: mangrana_sonarr container_name: mangrana_sonarr
environment: environment:
- PUID=1026 - PUID=${USER}
- PGID=100 - PGID=${GROUP}
- TZ=Europe/Madrid - TZ=Europe/Madrid
volumes: volumes:
- ./config:/config - ./config:/config
- ${JOBS_SONARR}:/jobs - ${JOBS_SONARR}:/jobs
- /volume1/data:/data - ${HOST_DATA_FOLDER}:/data
ports: ports:
- 8989:8989 - ${HOST_WEBUI_PORT}:8989
restart: unless-stopped restart: unless-stopped
networks: networks:
- qbit_default - qbit_default

View File

@ -5,11 +5,11 @@ services:
container_name: mangrana_tautulli container_name: mangrana_tautulli
image: ghcr.io/linuxserver/tautulli image: ghcr.io/linuxserver/tautulli
environment: environment:
- PUID=1026 - PUID=${USER}
- PGID=100 - PGID=${GROUP}
- TZ=Europe/Madrid - TZ=Europe/Madrid
volumes: volumes:
- ./config:/config - ./config:/config
ports: ports:
- 8182:8181 - ${HOST_WEBUI_PORT}:8181
restart: unless-stopped restart: unless-stopped