1
0
Fork 0

nextcloud: add

This commit is contained in:
Lukáš Kucharczyk 2023-12-05 11:31:20 +01:00
parent dc8cd9c4d1
commit 623e599a98
Signed by: lukas
SSH Key Fingerprint: SHA256:vMuSwvwAvcT6htVAioMP7rzzwMQNi3roESyhv+nAxeg
2 changed files with 21 additions and 0 deletions

View File

@ -10,6 +10,7 @@ include:
- services/miniflux.yml - services/miniflux.yml
- services/jelu.yml - services/jelu.yml
- services/sonarr.yml - services/sonarr.yml
- services/nextcloud.yml
services: services:

20
services/nextcloud.yml Normal file
View File

@ -0,0 +1,20 @@
---
services:
nextcloud:
image: registry.kucharczyk.xyz/nextcloud:latest
container_name: nextcloud
networks:
public:
ipv4_address: 192.168.240.40
depends_on:
- postgres
volumes:
- "${DOCKER_STORAGE_PATH}/nextcloud/config:/var/www/html/config"
- "${DOCKER_STORAGE_PATH}/nextcloud/data:/var/www/html/data"
- "${DOCKER_STORAGE_PATH}/nextcloud/html:/var/www/html"
environment:
# caddy
- TRUSTED_PROXIES=192.168.240.2
profiles:
- base
restart: unless-stopped