kompose/script/test_in_openshift/compose-files/v2-env.yaml
2017-08-18 17:12:27 +05:30

18 lines
180 B
YAML

version: "2"
services:
web:
ports:
- "5000:5000"
depends_on:
- redis
- web
redis:
image: redis:${TAG}
ports:
- "6379"
web:
image: tuna/docker-counter23