Tye is a tool that makes developing, testing, and deploying microservices and distributed applications easier. Project Tye includes a local orchestrator to make developing microservices easier and the ability to deploy microservices to Kubernetes with min
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
432 B

version: "3"
services:
redis:
image: redis:alpine
ports:
- "6379"
postgres: # TODO needed to switch name here for some reason
image: postgres:9.4
ports:
- "5432"
environment:
POSTGRES_PASSWORD: "postgres"
vote:
build:
context: ./vote
ports:
- 5000:80
result:
build:
context: ./results
ports:
- 5001:80
worker:
build:
context: ./worker