forked from LaconicNetwork/kompose
Shell scripts to test k8s and os conversion which can be ran by following command in root dir `./script/test/cmd/tests.sh`
21 lines
310 B
YAML
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
|