mirror of
https://github.com/Kugelschieber/docker.git
synced 2026-01-18 06:40:26 +00:00
Added postgres, mysql and mailhog.
This commit is contained in:
13
mysql/docker-compose.yml
Normal file
13
mysql/docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user