postgres: move to separate file
This commit is contained in:
parent
623e599a98
commit
52608253b1
|
@ -10,6 +10,7 @@ include:
|
|||
- services/miniflux.yml
|
||||
- services/jelu.yml
|
||||
- services/sonarr.yml
|
||||
- services/postgres.yml
|
||||
- services/nextcloud.yml
|
||||
|
||||
|
||||
|
@ -498,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,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