Skip to content

Commit

Permalink
Replace godeps w/ glock
Browse files Browse the repository at this point in the history
  • Loading branch information
jwilder committed Sep 15, 2014
1 parent aad517e commit 2847e7b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 22 deletions.
2 changes: 2 additions & 0 deletions GLOCKFILE
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github.com/BurntSushi/toml f87ce853111478914f0bcffa34d43a93643e6eda
github.com/fsouza/go-dockerclient 194816684825a3abf28d60e5243ec5240608414d
18 changes: 0 additions & 18 deletions Godeps

This file was deleted.

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ dist: dist-clean
mkdir -p dist/linux/i386 && GOOS=linux GOARCH=386 go build -o dist/linux/i386/docker-gen

release: dist
godep restore
glock sync github.com/jwilder/docker-gen
tar -cvzf docker-gen-linux-amd64-$(TAG).tar.gz -C dist/linux/amd64 docker-gen
tar -cvzf docker-gen-linux-i386-$(TAG).tar.gz -C dist/linux/i386 docker-gen
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Usage: docker-gen [options] <template> [<dest>]

*Options:*
```
-config="": Use the specified config file instead of command-line options. Multiple templates can be defined and
-config="": Use the specified config file instead of command-line options. Multiple templates can be defined and
they will be executed in the order that they appear in the config file.
-endpoint="": docker api endpoint [tcp|unix://..]. This can also be set w/ a `DOCKER_HOST` environment.
-interval=0:run notify command interval (s). Useful for service registration use cases.
Expand Down Expand Up @@ -104,11 +104,12 @@ $ docker-gen -notify "/bin/bash /tmp/etcd.sh" -interval 10 templates/etcd.tmpl /

### Development

This project uses [godep](https://github.com/tools/godep) for managing 3rd party dependencies. You'll need to install godep into your workspace before hacking on docker-gen.
This project uses [glock](https://github.com/robfig/glock) for managing 3rd party dependencies.
You'll need to install glock into your workspace before hacking on docker-gen.

```
$ git clone <your fork>
$ godep restore
$ glock sync github.com/jwilder/docker-gen
$ make
```

Expand Down

0 comments on commit 2847e7b

Please sign in to comment.