13 lines
330 B
YAML
13 lines
330 B
YAML
services:
|
|
postgres:
|
|
image: postgres:16.3
|
|
container_name: ${PROJECT_NAME}_postgres
|
|
environment:
|
|
POSTGRES_USER: ${POSTGRES_USER}
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
|
POSTGRES_DB: ${POSTGRES_DB}
|
|
ports:
|
|
- "${POSTGRES_PORT}:5432"
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|