feature: docker development environment (#544)

Add docker support

It's self-contained so should not interfere with anything else and can easily be thrown out if nobody wants it anymore.
This commit is contained in:
Alex Headley
2019-01-15 12:02:59 -05:00
committed by Nicolas F
parent a6d800b4ca
commit 18ebf134d5
12 changed files with 343 additions and 0 deletions

1
.docker/mariadb-init-sql/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
!*.sql

View File

@@ -0,0 +1,3 @@
GRANT REPLICATION SLAVE ON *.* TO 'nyaadev'@'%';
GRANT REPLICATION CLIENT ON *.* TO 'nyaadev'@'%';
FLUSH PRIVILEGES;