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

13
mysql/docker-compose.yml Normal file
View File

@@ -0,0 +1,13 @@
version: '2'
services:
mysql:
image: mysql:5.7
container_name: mysql
restart: always
ports:
- 3306:3306
environment:
- MYSQL_ROOT_PASSWORD=root
volumes:
- /home/marvin/docker/mysql/data:/var/lib/mysql