OpenShift tests for docker compose v3

This commit is contained in:
Anush Shetty
2017-08-18 17:12:27 +05:30
parent b3018b5c26
commit 40f756d8b6
10 changed files with 282 additions and 0 deletions
@@ -0,0 +1,17 @@
version: "2"
services:
web:
ports:
- "5000:5000"
depends_on:
- redis
- web
redis:
image: redis:${TAG}
ports:
- "6379"
web:
image: tuna/docker-counter23