1
0
Fork 0

Compare commits

..

No commits in common. "214c9806f225ea1bd0e42ec1696cf36f489c05d8" and "dc8cd9c4d15e0f5a93ab2937ec45e76c36be3140" have entirely different histories.

3 changed files with 13 additions and 35 deletions

View File

@ -10,8 +10,6 @@ include:
- services/miniflux.yml
- services/jelu.yml
- services/sonarr.yml
- services/postgres.yml
- services/nextcloud.yml
services:
@ -499,6 +497,19 @@ services:
profiles:
- base
postgres:
container_name: postgres
image: postgres:latest
networks:
public:
ipv4_address: 192.168.240.25
volumes:
- "${DOCKER_STORAGE_PATH}/postgres:/var/lib/postgresql/data"
restart: unless-stopped
profiles:
- base
- infra
gitea:
container_name: gitea
image: ${REGISTRY_URL}/gitea:latest

View File

@ -1,20 +0,0 @@
---
services:
nextcloud:
image: registry.kucharczyk.xyz/nextcloud:latest
container_name: nextcloud
networks:
public:
ipv4_address: 192.168.240.32
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

View File

@ -1,13 +0,0 @@
---
postgres:
container_name: postgres
image: postgres:latest
networks:
public:
ipv4_address: 192.168.240.25
volumes:
- "${DOCKER_STORAGE_PATH}/postgres:/var/lib/postgresql/data"
restart: unless-stopped
profiles:
- base
- infra