19 lines
425 B
YAML
19 lines
425 B
YAML
version: '3'
|
|
|
|
services:
|
|
resilio-sync:
|
|
container_name: resilio-sync
|
|
image: lscr.io/linuxserver/resilio-sync:latest
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
- TZ=${TZ}
|
|
ports:
|
|
- 8888:8888
|
|
- 55555:55555
|
|
restart: always
|
|
volumes:
|
|
- ${DOCKER_CONFIGS}/resilio-sync/config:/config
|
|
- ${DOCKER_CONFIGS}/resilio-sync/downloads:/downloads
|
|
- ${STORAGE_DIR}:/sync
|