Added postgres, mysql and mailhog.

This commit is contained in:
Marvin Blum
2018-08-08 01:14:38 +02:00
commit 673e99b9df
4 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
version: '2'
services:
mysql:
image: postgres:10
container_name: postgres
restart: always
ports:
- 5432:5432
environment:
- POSTGRES_PASSWORD=postgres
volumes:
- /home/marvin/docker/postgres/data:/var/lib/postgresql/data