fleet/docker-compose.yml
Jason Meller 5ad7c07e0c Dockerize app (#32)
This commit adds both a Dockerfile and updates the docker-compose.yml with local mounting so that you can standup a consistent dev environment. Please view the project README for more information.
2016-08-04 11:41:18 -04:00

19 lines
297 B
YAML

app:
build: .
ports:
- 8080:8080
volumes:
- './:/app'
command: /app/kolide serve
links:
- mysql
mysql:
image: mysql:5.7.13
environment:
MYSQL_ROOT_PASSWORD: toor
MYSQL_DATABASE: kolide
MYSQL_USER: kolide
MYSQL_PASSWORD: kolide
ports:
- "3306:3306"