Unify Shell-Syntax
This commit is contained in:
parent
1aa2e3f3fb
commit
855829aef6
|
|
@ -29,7 +29,7 @@ $ docker run -d --name kong-database \
|
||||||
Start a PostgreSQL container by executing:
|
Start a PostgreSQL container by executing:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
docker run -d --name kong-database \
|
$ docker run -d --name kong-database \
|
||||||
-p 5432:5432 \
|
-p 5432:5432 \
|
||||||
-e "POSTGRES_USER=kong" \
|
-e "POSTGRES_USER=kong" \
|
||||||
-e "POSTGRES_DB=kong" \
|
-e "POSTGRES_DB=kong" \
|
||||||
|
|
@ -41,7 +41,7 @@ docker run -d --name kong-database \
|
||||||
Run the database migrations with an ephemeral Kong container:
|
Run the database migrations with an ephemeral Kong container:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
docker run --rm \
|
$ docker run --rm \
|
||||||
--link kong-database:kong-database \
|
--link kong-database:kong-database \
|
||||||
-e "KONG_DATABASE=postgres" \
|
-e "KONG_DATABASE=postgres" \
|
||||||
-e "KONG_PG_HOST=kong-database" \
|
-e "KONG_PG_HOST=kong-database" \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue