Skip to content

Commit ced645d

Browse files
Initial Commit
Signed-off-by: Darren Shepherd <[email protected]>
1 parent fdd965a commit ced645d

File tree

559 files changed

+84277
-301
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

559 files changed

+84277
-301
lines changed

Diff for: .gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
.DS_Store
2-
main/main
2+
/main/main
3+
/docker-compose*
4+
*.log
5+
*.swp

Diff for: .travis.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
language: go
2+
sudo: false
3+
go:
4+
- 1.4
5+
install:
6+
- export GOPATH=${TRAVIS_BUILD_DIR}/Godeps/_workspace:$GOPATH
7+
- export PATH=${TRAVIS_BUILD_DIR}/Godeps/_workspace/bin:$PATH
8+
- go get -t -v ./...
9+
script:
10+
- script/validate-dco
11+
- script/validate-gofmt
12+
- go test -v -short ./...

Diff for: CHANGES.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Changelog
2+
==========
3+
4+
# 0.0.0 (2015-07-09)
5+
6+
## Features
7+
- We started
8+
- No where to go but up from here

Diff for: CONTRIBUTING.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Contributing to libcompose
2+
3+
You should do that...

Diff for: Dockerfile

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM golang:1.4.2-cross
2+
3+
RUN go get github.com/mitchellh/gox
4+
RUN go get github.com/aktau/github-release
5+
RUN go get github.com/tools/godep
6+
RUN go get golang.org/x/tools/cmd/cover
7+
8+
ENV GOPATH /go/src/github.com/docker/libcompose/Godeps/_workspace:/go
9+
ENV COMPOSE_BINARY /go/src/github.com/docker/libcompose/docker-compose
10+
ENV USER root
11+
12+
WORKDIR /go/src/github.com/docker/libcompose
13+
14+
ADD . /go/src/github.com/docker/libcompose

Diff for: Godeps/Godeps.json

+256
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Godeps/Readme

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Godeps/_workspace/.gitignore

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Godeps/_workspace/src/github.com/Sirupsen/logrus/.gitignore

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Godeps/_workspace/src/github.com/Sirupsen/logrus/CHANGELOG.md

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)