26 lines
538 B
YAML
26 lines
538 B
YAML
version: "3"
|
|
services:
|
|
syncthing:
|
|
image: lscr.io/linuxserver/syncthing:latest
|
|
container_name: syncthing
|
|
environment:
|
|
- PUID=
|
|
- PGID=
|
|
volumes:
|
|
- <docker directory>/syncthing/config:/config
|
|
- <data drive>:/data
|
|
networks:
|
|
syncthing:
|
|
ipv4_address: <static ip>
|
|
ports:
|
|
- 8384:8384
|
|
- 22000:22000/tcp
|
|
- 22000:22000/udp
|
|
- 21027:21027/udp
|
|
restart: unless-stopped
|
|
networks:
|
|
syncthing:
|
|
name: syncthing
|
|
ipam:
|
|
config:
|
|
- subnet: <subnet> |