You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
383 B
18 lines
383 B
version: "3"
|
|
|
|
services:
|
|
resilio-sync:
|
|
image: lscr.io/linuxserver/resilio-sync:latest
|
|
container_name: resilio-sync
|
|
restart: unless-stopped
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Etc/UTC
|
|
volumes:
|
|
- /path/to/config:/config
|
|
- /path/to/downloads:/downloads
|
|
- /path/to/data:/sync
|
|
ports:
|
|
- 8888:8888
|
|
- 55555:55555 |