postgres: move to separate file
This commit is contained in:
parent
df38443d5c
commit
ea3fd5685b
|
@ -10,6 +10,7 @@ include:
|
||||||
- services/miniflux.yml
|
- services/miniflux.yml
|
||||||
- services/jelu.yml
|
- services/jelu.yml
|
||||||
- services/sonarr.yml
|
- services/sonarr.yml
|
||||||
|
- services/postgres.yml
|
||||||
- services/nextcloud.yml
|
- services/nextcloud.yml
|
||||||
|
|
||||||
|
|
||||||
|
@ -498,19 +499,6 @@ services:
|
||||||
profiles:
|
profiles:
|
||||||
- base
|
- 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:
|
gitea:
|
||||||
container_name: gitea
|
container_name: gitea
|
||||||
image: ${REGISTRY_URL}/gitea:latest
|
image: ${REGISTRY_URL}/gitea:latest
|
||||||
|
|
|
@ -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