28 lines
640 B
YAML
Executable File
28 lines
640 B
YAML
Executable File
version: '3'
|
|
|
|
services:
|
|
syncthing-relay-discovery:
|
|
container_name: syncthing
|
|
image: t4skforce/syncthing-relay-discovery:latest
|
|
environment:
|
|
RELAY_OPTS: '-debug'
|
|
DISC_OPTS: '-debug -http'
|
|
POOLS:
|
|
ports:
|
|
- 22067:22067
|
|
- 22026:22026
|
|
restart: always
|
|
volumes:
|
|
- ./appdata/syncthing:/home/syncthing/certs
|
|
|
|
portainer:
|
|
container_name: portainer
|
|
image: portainer/portainer-ce
|
|
ports:
|
|
- 9000:9000/tcp
|
|
restart: always
|
|
volumes:
|
|
- ./appdata/portainer/data:/data
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- /etc/localtime:/etc/localtime:ro
|
|
|