18 lines
304 B
YAML
18 lines
304 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
db:
|
|
image: postgres:16
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_USER: onelga
|
|
POSTGRES_PASSWORD: onelga
|
|
POSTGRES_DB: onelga
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- postgres-data:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
postgres-data:
|