Initial docker compose files

This commit is contained in:
2025-06-12 00:09:45 +02:00
commit 194b674c7d
7 changed files with 219 additions and 0 deletions
+50
View File
@@ -0,0 +1,50 @@
---
volumes:
nextcloud-main:
nextcloud-db:
services:
nextcloud-app:
image: docker.io/library/nextcloud:31.0.5-apache
container_name: nextcloud-app
volumes:
- /mnt/hdd1/nextcloud-data:/var/www/html/data
- nextcloud-main:/var/www/html
labels:
- traefik.enable=true
- traefik.http.routers.nextcloud.rule=Host(`cloud.${DOMAIN}`)
- traefik.http.routers.nextcloud.entrypoints=websecure
- traefik.http.routers.nextcloud.tls=true
- traefik.http.routers.nextcloud.tls.certresolver=cloudflare
- traefik.http.middlewares.nextcloud-headers.headers.customrequestheaders.X-Forwarded-Proto=https
environment:
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=${POSTGRES_DB}
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_HOST=nextcloud-db
networks:
- frontend
- backend
restart: unless-stopped
nextcloud-db:
image: postgres:14
container_name: nextcloud-db
networks:
- backend
volumes:
- nextcloud-db:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=${POSTGRES_DB}
- POSTGRES_USER=${POSTGRES_USER}
restart: unless-stopped
networks:
frontend:
external: true
backend:
external: true