From 382c69f4905b35b254aafa7b28085402d0329809 Mon Sep 17 00:00:00 2001 From: Daniel Simon Date: Mon, 25 Jan 2021 11:26:56 +0700 Subject: [PATCH] README: Keep '-e' switches on the same line as their parameter --- README.public.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.public.md b/README.public.md index 0e3d59740..d8f02339b 100644 --- a/README.public.md +++ b/README.public.md @@ -86,9 +86,9 @@ The kickback rate is the portion of LQTY you pass on to users of your Dev UI. Fo It is highly recommended that you do this while running Dev UI locally, before you start hosting it publicly: ``` -docker run --name liquity -d --rm -p 3000:80 -e \ - FRONTEND_TAG=0x2781fD154358b009abf6280db4Ec066FCC6cb435 -e \ - INFURA_API_KEY=158b6511a5c74d1ac028a8a2afe8f626 \ +docker run --name liquity -d --rm -p 3000:80 \ + -e FRONTEND_TAG=0x2781fD154358b009abf6280db4Ec066FCC6cb435 \ + -e INFURA_API_KEY=158b6511a5c74d1ac028a8a2afe8f626 \ liquity/dev-frontend ```