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`
26 lines
353 B
YAML
26 lines
353 B
YAML
version: "2"
|
|
|
|
services:
|
|
nginx:
|
|
build: ./nginx
|
|
ports:
|
|
- "80:80"
|
|
restart: always
|
|
|
|
node1:
|
|
build: ./node
|
|
ports:
|
|
- "8080"
|
|
node2:
|
|
build: ./node
|
|
ports:
|
|
- "8080"
|
|
node3:
|
|
build: ./node
|
|
ports:
|
|
- "8080"
|
|
redis:
|
|
image: redis
|
|
ports:
|
|
- "6379"
|