소스 검색

Merge pull request #1607 from vuchl/master

Unify Shell-Syntax
yosifkit 6 년 전
부모
커밋
93cd86fca5
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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" \