forked from LaconicNetwork/kompose
* chore: unify e2e tests to compose yaml Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com> * chore: update tests_new.sh to reflect changes of files names Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com> --------- Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com>
17 lines
311 B
YAML
17 lines
311 B
YAML
version: '3'
|
|
|
|
services:
|
|
redis:
|
|
image: 'bitnami/redis:latest'
|
|
environment:
|
|
- ALLOW_EMPTY_PASSWORD=no
|
|
# Env file will override environment / warn!
|
|
env_file:
|
|
- "foo.env"
|
|
- bar.env
|
|
labels:
|
|
kompose.service.type: nodeport
|
|
ports:
|
|
- '6379:6379'
|
|
restart: "no"
|