mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
17 lines
279 B
YAML
17 lines
279 B
YAML
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
postgres:
|
||
|
image: postgres:alpine
|
||
|
restart: unless-stopped
|
||
|
volumes:
|
||
|
- db-data:/var/lib/postgresql/data
|
||
|
ports:
|
||
|
- 5432:5432
|
||
|
environment:
|
||
|
- POSTGRES_DB=planka
|
||
|
- POSTGRES_HOST_AUTH_METHOD=trust
|
||
|
|
||
|
volumes:
|
||
|
db-data:
|