Init borgbackup based backup solution for home server

This commit is contained in:
tkl
2024-07-01 07:39:16 +02:00
commit 51d4d1988e
8 changed files with 276 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
services:
nextcloud:
image: nextcloud
ports:
- "8008:80"
volumes:
- /srv/nextcloud/:/var/www/html
restart: always
environment:
- POSTGRES_HOST=nextcloud_db_1 # service name for postgres as assigned by Docker
- POSTGRES_DB=nextcloud_db
- POSTGRES_USER=postgres # will access postgres over 5432
- POSTGRES_PASSWORD=ncdbpwd
- PHP_MEMORY_LIMIT=1024M
- PHP_UPLOAD_LIMIT=1024M
depends_on:
- db
db:
image: postgres:13
restart: always
volumes:
- /srv/postgres-data:/var/lib/postgresql/data
environment:
- POSTGRES_DB=nextcloud_db
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=ncdbpwd