Fix startup issues

This commit is contained in:
2025-11-22 23:37:51 -06:00
parent dd34d0ab22
commit d6f05752a6
3 changed files with 12 additions and 27 deletions

View File

@@ -34,7 +34,6 @@ networks:
external: false external: false
services: services:
web: web:
container_name: nginx
image: "nginx" image: "nginx"
restart: unless-stopped restart: unless-stopped
ports: ports:
@@ -71,13 +70,11 @@ services:
# target: /usr/local/share/fonts/custom # target: /usr/local/share/fonts/custom
# read_only: true # read_only: true
certbot: certbot:
container_name: certbot
image: certbot/certbot:latest image: certbot/certbot:latest
volumes: volumes:
- /data/certbot/www/:/var/www/certbot/:rw - /data/certbot/www/:/var/www/certbot/:rw
- /data/certbot/conf/:/etc/letsencrypt/:rw - /data/certbot/conf/:/etc/letsencrypt/:rw
authelia: authelia:
container_name: 'authelia'
image: 'docker.io/authelia/authelia:latest' image: 'docker.io/authelia/authelia:latest'
restart: 'unless-stopped' restart: 'unless-stopped'
secrets: ['JWT_SECRET', 'SESSION_SECRET', 'STORAGE_PASSWORD', 'STORAGE_ENCRYPTION_KEY'] secrets: ['JWT_SECRET', 'SESSION_SECRET', 'STORAGE_PASSWORD', 'STORAGE_ENCRYPTION_KEY']
@@ -91,7 +88,6 @@ services:
- './authelia/:/config' - './authelia/:/config'
logging: *logging logging: *logging
minecraft: minecraft:
container_name: minecraft
image: itzg/minecraft-server:latest image: itzg/minecraft-server:latest
tty: true tty: true
stdin_open: true stdin_open: true
@@ -121,7 +117,6 @@ services:
- "/data/mincraft/plugins:/plugins" - "/data/mincraft/plugins:/plugins"
- "/data/mincraft/config:/config" - "/data/mincraft/config:/config"
gitea: gitea:
container_name: gitea
image: docker.gitea.com/gitea:1.24 image: docker.gitea.com/gitea:1.24
environment: environment:
- USER_UID=1000 - USER_UID=1000
@@ -137,7 +132,6 @@ services:
- "222:22" - "222:22"
logging: *logging logging: *logging
gitea-runner: gitea-runner:
container_name: gitea-runner
image: docker.gitea.com/act_runner:latest image: docker.gitea.com/act_runner:latest
restart: unless-stopped restart: unless-stopped
networks: networks:
@@ -154,7 +148,6 @@ services:
depends_on: depends_on:
- gitea - gitea
gpodder: gpodder:
container_name: gpodder
image: gitea.loadingm.xyz/the10thwiz/gpodder-rs:latest image: gitea.loadingm.xyz/the10thwiz/gpodder-rs:latest
restart: unless-stopped restart: unless-stopped
environment: environment:
@@ -165,7 +158,6 @@ services:
- /data/gpodder:/data - /data/gpodder:/data
logging: *logging logging: *logging
tftp: tftp:
container_name: tftp
image: kaczmar2/tftp-server image: kaczmar2/tftp-server
restart: unless-stopped restart: unless-stopped
environment: environment:

View File

@@ -1,6 +1,5 @@
services: services:
gluetun: gluetun:
container_name: gluetun
image: qmcgaw/gluetun image: qmcgaw/gluetun
cap_add: cap_add:
- NET_ADMIN - NET_ADMIN
@@ -32,7 +31,6 @@ services:
- /data/jellyfin/gluetun:/tmp/gluetun - /data/jellyfin/gluetun:/tmp/gluetun
qbittorrent: qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
network_mode: service:gluetun network_mode: service:gluetun
environment: environment:
- WEBUI_PORT=8080 - WEBUI_PORT=8080
@@ -55,7 +53,6 @@ services:
restart: unless-stopped restart: unless-stopped
flaresolverr: flaresolverr:
image: ghcr.io/flaresolverr/flaresolverr:latest image: ghcr.io/flaresolverr/flaresolverr:latest
container_name: flaresolverr
environment: environment:
- LOG_LEVEL=${LOG_LEVEL:-info} - LOG_LEVEL=${LOG_LEVEL:-info}
- LOG_HTML=${LOG_HTML:-false} - LOG_HTML=${LOG_HTML:-false}
@@ -70,7 +67,6 @@ services:
restart: unless-stopped restart: unless-stopped
prowlarr: prowlarr:
image: lscr.io/linuxserver/prowlarr:latest image: lscr.io/linuxserver/prowlarr:latest
container_name: prowlarr
environment: environment:
- PUID=0 - PUID=0
- PGID=0 - PGID=0
@@ -84,7 +80,6 @@ services:
restart: unless-stopped restart: unless-stopped
jackett: jackett:
image: lscr.io/linuxserver/jackett:latest image: lscr.io/linuxserver/jackett:latest
container_name: jackett
environment: environment:
- PUID=0 - PUID=0
- PGID=0 - PGID=0
@@ -98,7 +93,6 @@ services:
restart: unless-stopped restart: unless-stopped
sonarr: sonarr:
image: lscr.io/linuxserver/sonarr:latest image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr
environment: environment:
- PUID=0 - PUID=0
- PGID=0 - PGID=0
@@ -115,7 +109,6 @@ services:
restart: unless-stopped restart: unless-stopped
radarr: radarr:
image: lscr.io/linuxserver/radarr:latest image: lscr.io/linuxserver/radarr:latest
container_name: radarr
environment: environment:
- PUID=0 - PUID=0
- PGID=0 - PGID=0
@@ -132,7 +125,6 @@ services:
restart: unless-stopped restart: unless-stopped
jellyfin: jellyfin:
image: lscr.io/linuxserver/jellyfin:latest image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment: environment:
- PUID=0 - PUID=0
- PGID=0 - PGID=0
@@ -155,17 +147,20 @@ services:
- /data/jellyfin/radarr/movies:/data/movies - /data/jellyfin/radarr/movies:/data/movies
- /data/jellyfin/qbittorrent/downloads:/data/media_downloads - /data/jellyfin/qbittorrent/downloads:/data/media_downloads
restart: unless-stopped restart: unless-stopped
runtime: nvidia group_add:
deploy: - '993'
resources: devices:
reservations: - /dev/dri/renderD128:/dev/dri/renderD128
devices: # runtime: nvidia
- driver: nvidia # deploy:
count: all # resources:
capabilities: [gpu] # reservations:
# devices:
# - driver: intel
# count: all
# capabilities: [gpu]
jellyseerr: jellyseerr:
image: fallenbagel/jellyseerr:latest image: fallenbagel/jellyseerr:latest
container_name: jellyseerr
environment: environment:
- LOG_LEVEL=debug - LOG_LEVEL=debug
- TZ=${TZ} - TZ=${TZ}

View File

@@ -56,7 +56,6 @@ services:
volumes: volumes:
- .:/code - .:/code
- /data/library/ollama/ollama:/root/.ollama - /data/library/ollama/ollama:/root/.ollama
container_name: ollama
pull_policy: always pull_policy: always
tty: true tty: true
restart: always restart: always
@@ -69,7 +68,6 @@ services:
ollama-webui: ollama-webui:
image: ghcr.io/open-webui/open-webui:main image: ghcr.io/open-webui/open-webui:main
container_name: ollama-webui
volumes: volumes:
- /data/library/ollama/ollama-webui:/app/backend/data - /data/library/ollama/ollama-webui:/app/backend/data
depends_on: depends_on: