Initial release – Backup Monitor with MongoDB, Dark Theme UI, Borgmatic + Uptime Kuma integration
This commit is contained in:
commit
e2023abee5
10 changed files with 1378 additions and 0 deletions
22
compose.yaml
Normal file
22
compose.yaml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
services:
|
||||
backup-monitor:
|
||||
build: .
|
||||
container_name: backup-monitor
|
||||
restart: always
|
||||
ports:
|
||||
- "9999:9999"
|
||||
environment:
|
||||
- MONGO_URI=mongodb://mongo:27017
|
||||
- STALE_HOURS=26
|
||||
depends_on:
|
||||
- mongo
|
||||
|
||||
mongo:
|
||||
image: mongo:4.4
|
||||
container_name: backup-mongo
|
||||
restart: always
|
||||
volumes:
|
||||
- mongo_data:/data/db
|
||||
|
||||
volumes:
|
||||
mongo_data:
|
||||
Loading…
Add table
Add a link
Reference in a new issue