Compare commits
2 Commits
52608253b1
...
ea3fd5685b
Author | SHA1 | Date |
---|---|---|
Lukáš Kucharczyk | ea3fd5685b | |
Lukáš Kucharczyk | df38443d5c |
|
@ -10,6 +10,8 @@ include:
|
|||
- services/miniflux.yml
|
||||
- services/jelu.yml
|
||||
- services/sonarr.yml
|
||||
- services/postgres.yml
|
||||
- services/nextcloud.yml
|
||||
|
||||
|
||||
services:
|
||||
|
@ -497,19 +499,6 @@ 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
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
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
|
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
services:
|
||||
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
|
Loading…
Reference in New Issue