vault backup: 2023-07-30 00:49:41

This commit is contained in:
dashi_main
2023-07-30 00:49:42 -07:00
parent 5612b3b476
commit 58546b57aa
5 changed files with 73 additions and 11 deletions

View File

@@ -51,3 +51,31 @@ services:
start_period: 40s
```
#Public/Notta
## Caddy
#Public/Notta
## Syncthing
```bash
---
version: "3"
services:
syncthing:
image: lscr.io/linuxserver/syncthing:latest
container_name: syncthing
hostname: syncthing
environment:
- PUID=1000
- PGID=1000
- TZ="America/Los_Angeles"
volumes:
- /path/to/appdata/config:/config
- /path/to/data1:/data1
- /path/to/data2:/data2
ports:
- 8384:8384 # Web UI
- 22000:22000/tcp # TCP file transfers
- 22000:22000/udp # QUIC file transfers
- 21027:21027/udp # Receive local discovery broadcasts
restart: unless-stopped
```