1
0
Fork 0
docker-compose-templates/services/postgres.yml

11 lines
254 B
YAML
Raw Normal View History

2023-12-05 10:32:16 +00:00
---
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"
2024-04-21 10:50:16 +00:00
restart: unless-stopped