-
Notifications
You must be signed in to change notification settings - Fork 913
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #108 from gliderlabs/master
v5
- Loading branch information
Showing
226 changed files
with
121 additions
and
25,732 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
release | ||
build | ||
.git |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
release | ||
registrator | ||
build |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
|
||
## [Unreleased][unreleased] | ||
### Fixed | ||
|
||
### Added | ||
|
||
### Removed | ||
|
||
### Changed | ||
|
||
|
||
## [v5] - 2015-02-18 | ||
### Added | ||
- Automated, PR-driven release process | ||
- Development Dockerfile and make task | ||
- CircleCI config with artifacts for every build | ||
- `--version` flag to see version | ||
|
||
### Changed | ||
- Base container is now Alpine | ||
- Built entirely in Docker | ||
- Moved to gliderlabs organization | ||
- New versioning scheme | ||
- Release artifact now saved container image | ||
|
||
### Removed | ||
- Dropped unnecessary layers in Dockerfile | ||
- Dropped Godeps for now | ||
|
||
|
||
[unreleased]: https://github.com/gliderlabs/registrator/compare/v5...HEAD | ||
[v5]: https://github.com/gliderlabs/registrator/compare/v0.4.0...v5 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
FROM progrium/busybox | ||
MAINTAINER Jeff Lindsay <[email protected]> | ||
FROM gliderlabs/alpine:3.1 | ||
ENTRYPOINT ["/bin/registrator"] | ||
|
||
ADD https://github.com/progrium/registrator/releases/download/v0.4.0/registrator_0.4.0_linux_x86_64.tgz /tmp/registrator.tgz | ||
RUN cd /bin && gzip -dc /tmp/registrator.tgz | tar -xf - && rm /tmp/registrator.tgz | ||
|
||
ENV DOCKER_HOST unix:///tmp/docker.sock | ||
ENTRYPOINT ["/bin/registrator"] | ||
COPY . /go/src/github.com/gliderlabs/registrator | ||
RUN apk-install -t build-deps go git mercurial \ | ||
&& cd /go/src/github.com/gliderlabs/registrator \ | ||
&& export GOPATH=/go \ | ||
&& go get \ | ||
&& go build -ldflags "-X main.Version $(cat VERSION)" -o /bin/registrator \ | ||
&& rm -rf /go \ | ||
&& apk del --purge build-deps |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM gliderlabs/alpine:3.1 | ||
CMD ["/bin/registrator"] | ||
|
||
ENV GOPATH /go | ||
RUN apk-install go git mercurial | ||
COPY . /go/src/github.com/gliderlabs/registrator | ||
RUN cd /go/src/github.com/gliderlabs/registrator \ | ||
&& go get \ | ||
&& go build -ldflags "-X main.Version dev" -o /bin/registrator |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.