ci: migrate unittests and coverage

This commit is contained in:
Jens Langhammer
2020-05-28 19:29:28 +02:00
parent cfc8d0a0f7
commit 1ed7e900f2
3 changed files with 77 additions and 26 deletions

View File

@ -0,0 +1,25 @@
version: '3.7'
services:
postgresql:
container_name: postgres
image: postgres:11
volumes:
- db-data:/var/lib/postgresql/data
environment:
POSTGRES_DB: passbook
POSTGRES_USER: passbook
POSTGRES_PASSWORD: "EK-5jnKfjrGRm<77"
ports:
- 5432:5432
restart: always
redis:
container_name: redis
image: redis
ports:
- 6379:6379
restart: always
volumes:
db-data:
driver: local