From 855829aef68e6acceb86296c532a9146be0b1f87 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Wed, 27 Nov 2019 09:13:24 +0100 Subject: [PATCH] Unify Shell-Syntax --- kong/content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kong/content.md b/kong/content.md index 3eb9dd27a..0e065b79a 100644 --- a/kong/content.md +++ b/kong/content.md @@ -29,7 +29,7 @@ $ docker run -d --name kong-database \ Start a PostgreSQL container by executing: ```shell -docker run -d --name kong-database \ +$ docker run -d --name kong-database \ -p 5432:5432 \ -e "POSTGRES_USER=kong" \ -e "POSTGRES_DB=kong" \ @@ -41,7 +41,7 @@ docker run -d --name kong-database \ Run the database migrations with an ephemeral Kong container: ```shell -docker run --rm \ +$ docker run --rm \ --link kong-database:kong-database \ -e "KONG_DATABASE=postgres" \ -e "KONG_PG_HOST=kong-database" \