Created
October 21, 2017 19:46
-
-
Save mlabouardy/893e3cca59212cf7e771bc13e5788a80 to your computer and use it in GitHub Desktop.
setup build environment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2 | |
jobs: | |
build: | |
docker: | |
- image: python:3.5 | |
environment: | |
MYSQL_HOST: 127.0.0.1 | |
MYSQL_DB: mydb | |
MYSQL_USER: root | |
MYSQL_PASSWORD: root | |
- image: mysql:5.6 | |
environment: | |
MYSQL_ROOT_PASSWORD: root | |
MYSQL_DATABASE: mydb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment