15 lines
353 B
YAML
15 lines
353 B
YAML
services:
|
|
postgres:
|
|
image: postgres:18
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_USER: tetheruser
|
|
POSTGRES_PASSWORD: 2914400844
|
|
POSTGRES_DB: tetherdb
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql
|
|
|
|
volumes:
|
|
postgres_data:
|