1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 12:49:43 +02:00
planka/docker-compose-dev.yml

17 lines
279 B
YAML
Raw Normal View History

version: '3'
services:
postgres:
image: postgres:alpine
restart: unless-stopped
volumes:
- db-data:/var/lib/postgresql/data
2020-05-06 21:21:18 +05:00
ports:
- 5432:5432
environment:
- POSTGRES_DB=planka
- POSTGRES_HOST_AUTH_METHOD=trust
2020-05-06 21:21:18 +05:00
volumes:
db-data: