Unify Shell-Syntax

This commit is contained in:
Sebastian 2019-11-27 09:13:24 +01:00 committed by GitHub
parent 1aa2e3f3fb
commit 855829aef6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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" \