Skip to content

Commit

Permalink
chore(docker): add docker file for local testing
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Mar 11, 2019
1 parent 6cc7012 commit 92c5834
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: '2'
services:
mysql:
image: mysql:5.7
expose:
- '3306'
ports:
- '3306:3306'
restart: 'always'
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: ''
MYSQL_ROOT_PASSWORD: 'root'
MYSQL_USER: 'travis'
MYSQL_PASSWORD: ''
MYSQL_ROOT_HOST: '%'
MYSQL_DATABASE: 'testing_lucid'
volumes:
- ./mysqldata:/var/lib/mysql

0 comments on commit 92c5834

Please sign in to comment.