Last active 1776722072

admin revised this gist 1776722072. Go to revision

1 file changed, 16 insertions

urbacup.yml(file created)

@@ -0,0 +1,16 @@
1 + services:
2 + urbackup:
3 + image: uroni/urbackup-server:latest
4 + container_name: urbackup
5 + restart: unless-stopped
6 + # Use host network mode to allow the server to discover local clients via UDP broadcast
7 + network_mode: "host"
8 + volumes:
9 + - /path/to/your/database:/var/urbackup
10 + - /path/to/your/backups:/backups
11 + # Optional: for web interface logs
12 + - /var/log/urbackup:/var/log
13 + environment:
14 + - PUID=1000 # Replace with your user ID
15 + - PGID=100 # Replace with your group ID
16 + - TZ=Europe/Berlin # Set your timezone
Newer Older