Passer au contenu principal

Syncthing

Syncthing est une application de synchronisation de fichiers pair à pair open source.

docker volume create syncthing_config
docker volume create syncthing_data1
services:
  syncthing:
    image: lscr.io/linuxserver/syncthing:latest
    container_name: syncthing
    hostname: syncthing.favrep.ovh
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Zurich
    volumes:
      - syncthing_config:/config
      - syncthing_data1:/data1
    ports:
      - 8384:8384                # Application WebUI
      - 22000:22000/tcp          # Listening port (TCP)
      - 22000:22000/udp          # Listening port (UDP)
      - 21027:21027/udp          # Protocol discovery
    restart: unless-stopped
networks:
  jellyfin_network:
    driver: bridge
    # Permet la communication externe mais isole des autres conteneurs
    internal: false
volumes:
  syncthing_config:
      external: true
  syncthing_data1:
      external: true