11 lines
231 B
YAML
11 lines
231 B
YAML
services:
|
|
postgres:
|
|
image: postgres:17-alpine
|
|
container_name: boring_postgres
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
- POSTGRES_PASSWORD=postgres
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_DB=postgres
|
|
|