19 lines
374 B
YAML
19 lines
374 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:16-alpine
|
|
container_name: thumbpreview-db
|
|
environment:
|
|
POSTGRES_USER: thumbpreview
|
|
POSTGRES_PASSWORD: thumbpreview123
|
|
POSTGRES_DB: thumbpreview
|
|
ports:
|
|
- "5435:5432"
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
postgres_data:
|