Define and run multi-container applications with Docker
Go to file
Guillaume Tardif 67a7c96dc4
Merge pull request #84 from rumpl/chore-remove-util
Remove util package, it was only used  by cli/main.go
2020-05-13 14:23:36 +02:00
.github/workflows First e2e tests running locally (with example backend) 2020-05-05 14:40:30 +02:00
azure Let `make protos` affect host files 2020-05-13 10:44:04 +02:00
backend Let `make protos` affect host files 2020-05-13 10:44:04 +02:00
cli Merge pull request #84 from rumpl/chore-remove-util 2020-05-13 14:23:36 +02:00
client Refactor example/backend 2020-05-05 17:14:26 +02:00
compose Let `make protos` affect host files 2020-05-13 10:44:04 +02:00
containers Let `make protos` affect host files 2020-05-13 10:44:04 +02:00
context Add remove function to context store 2020-05-12 12:05:00 +02:00
errdefs Add common error definitions 2020-05-12 12:04:57 +02:00
example Add rm command 2020-05-13 10:44:04 +02:00
moby Implement `Delete` for moby 2020-05-13 10:50:36 +02:00
server Add rm command 2020-05-13 10:44:04 +02:00
tests Enable "run->rm" cycle on e2e-aci 2020-05-13 10:44:04 +02:00
.dockerignore Add dockerignore 2020-04-24 15:03:46 +02:00
.gitignore Remove non-project path 2020-04-24 14:04:27 +02:00
.golangci.yml Add ACI compose basic e2e test 2020-05-06 15:56:47 +02:00
Dockerfile Add `make lint` and run it on CI 2020-05-05 10:50:30 +02:00
Makefile Let `make protos` affect host files 2020-05-13 10:44:04 +02:00
README.md Implement quiet flag for ps command 2020-05-06 12:18:53 +02:00
builder.Makefile Add `make lint` and run it on CI 2020-05-05 10:50:30 +02:00
go.mod Merge pull request #42 from rumpl/moby 2020-05-12 13:46:26 +02:00
go.sum Merge pull request #42 from rumpl/moby 2020-05-12 13:46:26 +02:00
setup-dev.sh Use github action to install protoc 2020-04-30 17:45:48 +02:00

README.md

Docker API

Actions Status

Dev Setup

The recommended way is to use the main Makefile that runs everything inside a container.

If you don't have or want to use Docker for building you need to make sure you have all the needed tools installed locally:

  • go 1.14
  • go get github.com/golang/protobuf/protoc-gen-go@v1.4.1
  • go get golang.org/x/tools/cmd/goimports
  • go get gotest.tools/gotestsum@v0.4.2
  • go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.26.0

And then you can call the same make targets but you need to pass it the builder.Makefile (make -f builder.Makefile).

Building the project

$ make

If you make changes to the .proto files, make sure to make protos to generate go code.

Tests

To run unit tests:

make test

If you need to update a golden file simply do go test ./... -test.update-golden.