From 75ecc88aefc60ffffb17c1c854fee7cc8ac40835 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Skowro=C5=84ski?= <5780288+hexmind@users.noreply.github.com> Date: Wed, 30 Jan 2019 20:52:15 +0100 Subject: [PATCH] Update introduction.md (#1090) fix "It's as simple as 1-2-3" ``` $ wget https://raw.githubusercontent.com/kubernetes/kompose/master/examples/docker-compose-v3.yaml $ kompose up FATA No 'docker-compose' file found: stat docker-compose.yaml: no such file or directory ``` --- docs/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/introduction.md b/docs/introduction.md index 838c5de5..8d25c491 100644 --- a/docs/introduction.md +++ b/docs/introduction.md @@ -19,7 +19,7 @@ Why do developers love it? 3. Check your Kubernetes cluster for your newly deployed containers! ```sh -$ wget https://raw.githubusercontent.com/kubernetes/kompose/master/examples/docker-compose-v3.yaml +$ wget https://raw.githubusercontent.com/kubernetes/kompose/master/examples/docker-compose-v3.yaml -O docker-compose.yaml $ kompose up We are going to create Kubernetes Deployments, Services and PersistentVolumeClaims for your Dockerized application.