Address code review comments
This commit is contained in:
parent
8ee4b02632
commit
c804abb267
|
|
@ -29,7 +29,7 @@ If so, skip directly to the point **2**; else, please keep going with this guide
|
||||||
Start a Redis container by executing:
|
Start a Redis container by executing:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
docker run -d --name express-gateway-data-store \
|
$ docker run -d --name express-gateway-data-store \
|
||||||
-p 6379:6379 \
|
-p 6379:6379 \
|
||||||
redis:alpine
|
redis:alpine
|
||||||
```
|
```
|
||||||
|
|
@ -55,7 +55,10 @@ You can now read the docs at [express-gateway.io/docs](http://express-gateway.io
|
||||||
### Install plugin
|
### Install plugin
|
||||||
|
|
||||||
You can install custom plugins to the current Express Gateway image just creating a new `Dockerfile`,
|
You can install custom plugins to the current Express Gateway image just creating a new `Dockerfile`,
|
||||||
use `expressgateway/express-gateway` as base image and then install the required plugins as global yarn
|
use `%%IMAGE%%` as base image and then install the required plugins as global yarn
|
||||||
packages
|
packages
|
||||||
|
|
||||||
`RUN yarn add global express-gateway-plugin-name`
|
```dockerfile
|
||||||
|
FROM %%IMAGE%%
|
||||||
|
RUN yarn add global express-gateway-plugin-name
|
||||||
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue