mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-21 07:05:22 +02:00
* Adiciona template do Syncthing com arquivos de configuração e ícone * Remove versão do Docker Compose do template do Syncthing
20 lines
369 B
YAML
20 lines
369 B
YAML
services:
|
|
syncthing:
|
|
image: lscr.io/linuxserver/syncthing:latest
|
|
restart: unless-stopped
|
|
expose:
|
|
- 8384
|
|
- 22000
|
|
- 21027/udp
|
|
volumes:
|
|
- syncthing_config:/config
|
|
- syncthing_data:/var/syncthing/Sync
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=${timezone}
|
|
|
|
volumes:
|
|
syncthing_config:
|
|
syncthing_data:
|