added protos,backend/hello,backend/envoy + compose setup

This commit is contained in:
Patrik Oldsberg
2020-02-03 14:50:22 +01:00
committed by Patrik Oldsberg
parent 42cb257354
commit 0ee6f06d3d
16 changed files with 2007 additions and 0 deletions
Regular → Executable
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/env docker-compose -f
version: "3.4"
services:
proxy:
container_name: boss-proxy
build:
context: backend/proxy
restart: unless-stopped
ports:
- "8080:80"
hello:
container_name: boss-hello
build:
context: backend/hello
restart: unless-stopped