12 lines
255 B
YAML
12 lines
255 B
YAML
services:
|
|
postgres:
|
|
image: postgres:latest
|
|
container_name: postgres
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: postgres_user
|
|
POSTGRES_PASSWORD: postgres_password
|
|
POSTGRES_DB: postgres_db
|
|
|
|
ports:
|
|
- "5434:5432" |