fix: update Gitea SSH configuration to use environment variables and set Plex image version

This commit is contained in:
nathan 2026-04-20 20:20:26 -04:00
parent bc796cd125
commit 92c8125981
2 changed files with 6 additions and 5 deletions

View File

@ -29,9 +29,9 @@ services:
- GITEA__database__PASSWD=${GITEA_DB_PASSWORD} - GITEA__database__PASSWD=${GITEA_DB_PASSWORD}
- GITEA__server__ROOT_URL=${GITEA_ROOT_URL} - GITEA__server__ROOT_URL=${GITEA_ROOT_URL}
- TZ=${TZ} - TZ=${TZ}
- GITEA__server__SSH_KEY_EXCHANGES=curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,diffie-hellman-group-exchange-sha256 - GITEA__server__SSH_KEY_EXCHANGES=${GITEA__server__SSH_KEY_EXCHANGES}
- GITEA__server__SSH_CIPHERS=aes128-gcm@openssh.com,aes256-gcm@openssh.com,chacha20-poly1305@openssh.com - GITEA__server__SSH_CIPHERS=${GITEA__server__SSH_CIPHERS}
- GITEA__server__SSH_ALGORITHMS=rsa-sha2-256,rsa-sha2-512,ssh-ed25519 - GITEA__server__SSH_ALGORITHMS=${GITEA__server__SSH_ALGORITHMS}
labels: labels:
- "traefik.enable=true" - "traefik.enable=true"
- "traefik.http.routers.gitea.entrypoints=websecure" - "traefik.http.routers.gitea.entrypoints=websecure"

View File

@ -1,6 +1,6 @@
services: services:
plex: plex:
image: lscr.io/linuxserver/plex:latest image: lscr.io/linuxserver/plex:1.43.1.10611-1e34174b1-ls302
container_name: plex container_name: plex
network_mode: host network_mode: host
restart: unless-stopped restart: unless-stopped
@ -9,13 +9,14 @@ services:
- PGID=1000 - PGID=1000
- TZ=America/New_York - TZ=America/New_York
- VERSION=docker - VERSION=docker
- PLEX_CLAIM=claim-sxFpsPTDzzF-9RZAxtUL - PLEX_CLAIM=${PLEX_CLAIM}
- NVIDIA_VISIBLE_DEVICES=all - NVIDIA_VISIBLE_DEVICES=all
- NVIDIA_DRIVER_CAPABILITIES=compute,video,utility - NVIDIA_DRIVER_CAPABILITIES=compute,video,utility
volumes: volumes:
- /mnt/appdata/plex:/config - /mnt/appdata/plex:/config
- /mnt/media/tvshows:/tv - /mnt/media/tvshows:/tv
- /mnt/media/movies:/movies - /mnt/media/movies:/movies
- /mnt/media/incoming/downloads-pinchflat:/youtube
deploy: deploy:
resources: resources:
reservations: reservations: