Browse Source

Merge pull request #1607 from vuchl/master

Unify Shell-Syntax
yosifkit 6 years ago
parent
commit
93cd86fca5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      kong/content.md

+ 2 - 2
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" \