14 lines
295 B
YAML
14 lines
295 B
YAML
|
---
|
||
|
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
|