Define and run multi-container applications with Docker
Go to file
Ulysses Souza 161f8154de Organize imports
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
2020-05-05 15:56:00 +02:00
.github/workflows Add `make lint` and run it on CI 2020-05-05 10:50:30 +02:00
azure Refactor on services 2020-05-05 15:37:12 +02:00
backend Refactor on services 2020-05-05 15:37:12 +02:00
cli Organize imports 2020-05-05 15:56:00 +02:00
client Refactor on services 2020-05-05 15:37:12 +02:00
compose Add compose up and down 2020-05-05 14:03:14 +02:00
containers Refactor on services 2020-05-05 15:37:12 +02:00
context Add `make lint` and run it on CI 2020-05-05 10:50:30 +02:00
example Add comments on exported items, remove example command 2020-05-05 10:27:44 +02:00
server Refactor on services 2020-05-05 15:37:12 +02:00
util Add `docker context create` command 2020-04-26 19:42:20 +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 `make lint` and run it on CI 2020-05-05 10:50:30 +02:00
Dockerfile Add `make lint` and run it on CI 2020-05-05 10:50:30 +02:00
Makefile Add `make lint` and run it on CI 2020-05-05 10:50:30 +02:00
README.md Add `make lint` and run it on CI 2020-05-05 10:50:30 +02:00
builder.Makefile Add `make lint` and run it on CI 2020-05-05 10:50:30 +02:00
go.mod Add `make lint` and run it on CI 2020-05-05 10:50:30 +02:00
go.sum Implement exec command 2020-05-04 12:43:32 +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.