1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 05:09:43 +02:00
planka/docker-compose-dev.yml
2020-05-06 00:07:23 +02:00

17 lines
307 B
YAML

version: '3'
services:
postgres:
image: postgres:alpine
restart: unless-stopped
volumes:
- db-data:/var/lib/postgresql/data
environment:
- POSTGRES_DB=planka
- POSTGRES_HOST_AUTH_METHOD=trust
ports:
- "5432:5432"
expose:
- "5432"
volumes:
db-data: