3 Commits

2 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ services:
networks: networks:
- gitea - gitea
volumes: volumes:
- /mnt/storage/appdata/gitea/data:/data - /var/lib/gitea/data:/data
- /etc/timezone:/etc/timezone:ro - /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
ports: ports:
@@ -38,6 +38,6 @@ services:
networks: networks:
- gitea - gitea
volumes: volumes:
- /mnt/storage/appdata/gitea/mysql:/var/lib/mysql - /var/lib/gitea/db:/var/lib/mysql
+7 -7
View File
@@ -4,19 +4,19 @@ services:
container_name: jellyfin container_name: jellyfin
network_mode: 'host' network_mode: 'host'
volumes: volumes:
- /mnt/storage/appdata/jellyfin/config:/config - /etc/jellyfin:/config
- /mnt/storage/appdata/jellyfin/config/web-config.json:/jellyfin/jellyfin-web/config.json # - /etc/jellyfin/web-config.json:/jellyfin/jellyfin-web/config.json
- /mnt/storage/appdata/jellyfin/cache:/cache - /var/lib/jellyfin/cache:/cache
- /mnt/cygnus:/cygnus:ro - /mnt/cygnus:/cygnus:ro
- type: bind - type: bind
source: /mnt/storage/appdata/jellyfin/media source: /var/lib/jellyfin/media
target: /media target: /media
read_only: true read_only: true
restart: 'unless-stopped' restart: 'unless-stopped'
# Optional - alternative address used for autodiscovery # Optional - alternative address used for autodiscovery
# environment: environment:
# - JELLYFIN_PublishedServerUrl=http://example.com - JELLYFIN_PublishedServerUrl=http://127.0.0.1:8096
# Optional - may be necessary for docker healthcheck to pass if running in host network mode # Optional - may be necessary for docker healthcheck to pass if running in host network mode
# extra_hosts: # extra_hosts:
# - 'host.docker.internal:host-gateway' # - 'host.docker.internal:host-gateway'