18 lines
286 B
YAML
18 lines
286 B
YAML
version: '3.8'
|
|
services:
|
|
postgres:
|
|
image: postgres:18
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: test
|
|
POSTGRES_PASSWORD: test
|
|
POSTGRES_DB: test
|
|
ports:
|
|
- '4401:5432'
|
|
volumes:
|
|
- e2epgdata:/var/lib/postgresql
|
|
|
|
|
|
volumes:
|
|
e2epgdata: {}
|