add mysql and prosgres test docker images fixgures

This commit is contained in:
Christian Tzolov
2019-11-11 16:20:39 +01:00
parent db24d1d68d
commit d8cdbc8b28
6 changed files with 82 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
version: '3'
services:
postgres:
image: postgres:10
container_name: schema-registry-postgres
restart: always
environment:
POSTGRES_DB: registry
POSTGRES_USER: root
POSTGRES_PASSWORD: rootpw
expose:
- 5432
ports:
- 5432:5432