From 455168d17764b5937c6fbae39e121abc4b4dd87e Mon Sep 17 00:00:00 2001 From: Julien Escario Date: Fri, 19 Feb 2021 17:35:40 +0100 Subject: [PATCH] Added helloworld docker-compose example --- docker/helloworld.yaml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 docker/helloworld.yaml diff --git a/docker/helloworld.yaml b/docker/helloworld.yaml new file mode 100644 index 0000000..ae3243b --- /dev/null +++ b/docker/helloworld.yaml @@ -0,0 +1,3 @@ +compose_test: + image: ubuntu:14.04 + command: /bin/sh -c "while true; do echo hello world; sleep 1; done"