kompose/script/test/fixtures/v3.0/docker-compose.yaml
AhmedGrati 6be6fdd165 feat: support external traffic policy
Signed-off-by: AhmedGrati <ahmedgrati1999@gmail.com>
2023-02-13 14:59:46 +01:00

29 lines
490 B
YAML

version: "3"
services:
redis:
image: redis
labels:
kompose.service.type: headless
healthcheck:
test: echo "hello world"
interval: 10s
timeout: 1s
retries: 5
restart: "unless-stopped"
foo:
image: foo:latest
command: sh -c "echo Hello Foo"
networks:
app: {}
web: {}
normalized_network: {}
networks:
normalized_network:
app:
external:
name: app-network
web:
external:
name: web-network