Quildra 11 months ago
parent
commit
95162d0609
  1. 2
      jellyfin-docker-compose.yml
  2. 16
      syncthing-docker-compose.yml

2
jellyfin-docker-compose.yml

@ -1,7 +1,7 @@
version: '3.5'
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
image: linuxserver/jellyfin:latest
container_name: jellyfin
volumes:
- /usr/docker_binds/jellyfin/config:/config

16
syncthing-docker-compose.yml

@ -0,0 +1,16 @@
---
version: "3"
services:
syncthing:
image: syncthing/syncthing
container_name: syncthing
volumes:
- /mnt/pokecenter/Media:/mnt/Media
- /mnt/docker_volumes/syncthing:/var/syncthing
network_mode: host
restart: unless-stopped
healthcheck:
test: curl -fkLsS -m 2 127.0.0.1:8384/rest/noauth/health | grep -o --color=never OK || exit 1
interval: 1m
timeout: 10s
retries: 3
Loading…
Cancel
Save