c add dev documentation and local db server

This commit is contained in:
Victor Parmar
2020-05-06 00:07:23 +02:00
parent 328aa63f6e
commit 9da5a0c91e
2 changed files with 27 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
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: