forked from LaconicNetwork/kompose
28 lines
485 B
YAML
28 lines
485 B
YAML
version: "2"
|
|
|
|
services:
|
|
vote:
|
|
image: docker/example-voting-app-vote:latest
|
|
labels:
|
|
- "com.example.description=Vote"
|
|
ports:
|
|
- "5000:80"
|
|
|
|
redis:
|
|
image: redis:alpine
|
|
ports: ["6379"]
|
|
|
|
worker:
|
|
image: docker/example-voting-app-worker:latest
|
|
|
|
db:
|
|
image: postgres:9.4
|
|
ports: ["5432"]
|
|
labels:
|
|
- "com.example.description=Postgres Database"
|
|
|
|
result:
|
|
image: tmadams333/example-voting-app-result:latest
|
|
ports:
|
|
- "5001:80"
|