This repository was archived by the owner on Jul 18, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +14
-13
lines changed Expand file tree Collapse file tree 6 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 1
1
.DS_Store
2
2
/main /main
3
3
/docker-compose *
4
+ /libcompose-cli *
4
5
* .log
5
6
* .swp
6
7
bundles
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ RUN set -ex; \
24
24
RUN ln -s /usr/local/bin/docker-${DOCKER_VERSION} /usr/local/bin/docker
25
25
26
26
ENV GOPATH /go/src/github.com/docker/libcompose/Godeps/_workspace:/go
27
- ENV COMPOSE_BINARY /go/src/github.com/docker/libcompose/docker-compose
27
+ ENV COMPOSE_BINARY /go/src/github.com/docker/libcompose/libcompose-cli
28
28
ENV USER root
29
29
30
30
WORKDIR /go/src/github.com/docker/libcompose
Original file line number Diff line number Diff line change @@ -44,13 +44,13 @@ A partial implementation of the docker-compose CLI is also implemented in Go. Th
44
44
Run one of these:
45
45
46
46
```
47
- docker-compose_darwin -386
48
- docker-compose_linux -amd64
49
- docker-compose_windows -amd64.exe
50
- docker-compose_darwin -amd64
51
- docker-compose_linux -arm
52
- docker-compose_linux -386
53
- docker-compose_windows -386.exe
47
+ libcompose-cli_darwin -386
48
+ libcompose-cli_linux -amd64
49
+ libcompose-cli_windows -amd64.exe
50
+ libcompose-cli_darwin -amd64
51
+ libcompose-cli_linux -arm
52
+ libcompose-cli_linux -386
53
+ libcompose-cli_windows -386.exe
54
54
```
55
55
56
56
### Tests
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ func main() {
14
14
factory := & dockerApp.ProjectFactory {}
15
15
16
16
app := cli .NewApp ()
17
- app .Name = "docker-compose "
18
- app .Usage = "Fast, isolated environments using Docker ."
17
+ app .Name = "libcompose-cli "
18
+ app .Usage = "Command line interface for libcompose ."
19
19
app .Version = version .VERSION + " (" + version .GITCOMMIT + ")"
20
20
app .Author = "Docker Compose Contributors"
21
21
app .Email = "https://github.com/docker/libcompose"
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ type RunSuite struct {
32
32
}
33
33
34
34
var _ = Suite (& RunSuite {
35
- command : "../bundles/docker-compose_linux -amd64" ,
35
+ command : "../bundles/libcompose-cli_linux -amd64" ,
36
36
})
37
37
38
38
func (s * RunSuite ) CreateProjectFromText (c * C , input string ) string {
Original file line number Diff line number Diff line change 14
14
fi
15
15
16
16
# Get rid of existing binaries
17
- rm -f docker-compose *
17
+ rm -f libcompose-cli *
18
18
rm -rf Godeps/_workspace/pkg
19
19
20
20
# Build binaries
21
21
gox " ${OS_PLATFORM_ARG[@]} " " ${OS_ARCH_ARG[@]} " \
22
- -output=" bundles/docker-compose_ {{.OS}}-{{.Arch}}" \
22
+ -output=" bundles/libcompose-cli_ {{.OS}}-{{.Arch}}" \
23
23
-ldflags=" -w -X github.com/docker/libcompose/version.GITCOMMIT ` git rev-parse --short HEAD` " \
24
24
./cli/main
25
25
You can’t perform that action at this time.
0 commit comments