From c1cbe2694d2e20f252e741c08eb0c485de3fd54f Mon Sep 17 00:00:00 2001 From: Sean Burlington <sean@practicalweb.co.uk> Date: Thu, 19 Nov 2020 21:23:43 +0000 Subject: [PATCH] docker run vs create I think the docker command should be "run" not create as you are expecting a running container in the next step If I'm right - this change should help other newcomers --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1acadc4..2d8d611 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ## Usage ```sh -docker create \ +docker run \ --name=funkwhale \ -e FUNKWHALE_HOSTNAME=<yourdomain.funkwhale> \ -e NESTED_PROXY=0 \ -- GitLab