1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-22 12:53:00 +00:00
kiwi-scp/example/hello-world.project/docker-compose.yml

16 lines
288 B
YAML
Raw Normal View History

version: "2"
networks:
# reachable from outside
default:
driver: bridge
# interconnects projects
kiwihub:
external:
name: $KIWI_HUB_NAME
services:
hello-world:
image: alpine:latest
command: sh -c 'while :; do echo Hello World "$$RANDOM"; sleep 10; done'