kompose/script/test/fixtures/flask-redis/docker-compose.yml
Suraj Deshmukh 9a4e953555 Functional Testing
Shell scripts to test k8s and os conversion
which can be ran by following command in root dir
`./script/test/cmd/tests.sh`
2016-08-08 04:39:10 +00:00

21 lines
310 B
YAML

version: "2"
services:
redis:
image: dharmit/redis
command: redis-server
ports:
- "6379"
volumes:
- /opt/redis:/redis
flask:
image: dharmit/flask
ports:
- "31000:5000"
depends_on:
- redis
environment:
REDIS_PORT: 6379
REDIS_HOST: redis