fenghuo/dockers/database-postgres.yml

32 lines
736 B
YAML
Raw Permalink Normal View History

2025-05-26 21:45:30 +08:00
services:
db:
2025-06-05 15:44:06 +08:00
image: postgres:latest
2025-05-26 21:45:30 +08:00
container_name: postgres
ports:
2025-05-27 15:37:27 +08:00
- '5432:5432'
2025-05-26 21:45:30 +08:00
environment:
2025-06-05 15:44:06 +08:00
- POSTGRES_DB=db
- POSTGRES_USER=nice
- POSTGRES_PASSWORD=nice1234
2025-05-26 21:45:30 +08:00
volumes:
2025-05-27 15:37:27 +08:00
- ./volumes/postgres:/var/lib/postgresql/data
# - type: volume
# source: postgres_data
# target: /var/lib/postgresql/data
2025-05-26 21:45:30 +08:00
healthcheck:
2025-05-27 15:37:27 +08:00
test: ['CMD-SHELL', "sh -c 'pg_isready -U ${POSTGRES_USER:-nice_user} -d ${POSTGRES_DB:-nice_db}'"]
2025-05-26 21:45:30 +08:00
interval: 10s
timeout: 3s
retries: 3
restart: always
networks:
- nice-net
volumes:
postgres_data:
driver: local
driver_opts:
type: none
2025-06-05 15:44:06 +08:00
device: /opt/projects/nice/volumes/postgres
2025-05-26 21:45:30 +08:00
o: bind