12 lines
272 B
YAML
12 lines
272 B
YAML
services:
|
|
postgres:
|
|
image: postgres:17-alpine3.20
|
|
restart: always
|
|
environment:
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_DB: postgres
|
|
ports:
|
|
- "127.0.0.1:5432:5432"
|
|
volumes:
|
|
- "/srv/vision-career/postgres:/var/lib/postgresql/data"
|