mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
d9f776c756
This commit vendors in all of our dependencies using [GoDep](https://github.com/tools/godep). We are forgoing using a vendor/ folder to avoid checking in deps into the repo. Note: Never manually modify `Godeps/Godeps.json` this file is dynamically by the godep CLI Common Actions: To add a new package foo/bar, do this: 1. Run `go get foo/bar` 1. Edit your code to import foo/bar. 1. Run `godep save` (or `godep save ./...`). To update a package from your `$GOPATH`, do this: 1. Run `go get -u foo/bar` 1. Run `godep update foo/bar`. (You can use the `...` wildcard, for example `godep update foo/...`).
20 lines
301 B
YAML
20 lines
301 B
YAML
app:
|
|
build: .
|
|
ports:
|
|
- 8080:8080
|
|
volumes:
|
|
- './:/go/src/app'
|
|
command: ./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"
|