Define and run multi-container applications with Docker
Go to file
Ulysses Souza 31ad0385b2
Merge pull request #13 from ulyssessouza/dockerize-build
Dockerize build
2020-04-24 14:44:51 +02:00
backend/v1 Dockerize build and proto gen 2020-04-24 14:20:42 +02:00
client Refactor NewContext 2020-04-24 11:50:30 +02:00
cmd Refactor NewContext 2020-04-24 11:50:30 +02:00
containers/v1 Add containers proto from docker/d2 2020-04-23 12:25:14 +02:00
context Use v2 of urfave/cli 2020-04-23 09:43:53 +02:00
example/backend Refactor NewContext 2020-04-24 11:50:30 +02:00
scripts/setup add protoc-gen-go and remove gogo install 2020-04-21 15:29:18 +02:00
server Add initial backend proto and example 2020-04-06 11:22:34 -04:00
util Refactor NewContext 2020-04-24 11:50:30 +02:00
.gitignore Remove non-project path 2020-04-24 14:04:27 +02:00
Dockerfile Dockerize build and proto gen 2020-04-24 14:20:42 +02:00
Makefile Dockerize build and proto gen 2020-04-24 14:20:42 +02:00
README.md Add initial backend proto and example 2020-04-06 11:22:34 -04:00
go.mod Use v2 of urfave/cli 2020-04-23 09:43:53 +02:00
go.sum Use v2 of urfave/cli 2020-04-23 09:43:53 +02:00
setup-dev.sh Fix install-protobuf script for macosx install 2020-04-06 17:19:16 +02:00

README.md

Docker API

Dev Setup

To setup a development machine to update the API protobufs, first run the ./setup-dev.sh script to install the correct version of protobufs on your system and get the protobuild binary.

Building the API Project

> make

Build the example backend

The example backend code is located in /example/backend. Build the service with the resulting binary placed in the /bin directory.

> make example