kompose/script/test/fixtures/v3.0/docker-compose.yaml
2020-08-07 18:13:20 +08:00

26 lines
438 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: {}
networks:
app:
external:
name: app-network
web:
external:
name: web-network