* Fix kitematic userguide for #777 * Fix Kitematic tutorial: Serve a static website with NGINX * Fix image on Set up a Minecraft server * Fix image and text for kitematic rethink tutorial, this should fix #777
Before Width: | Height: | Size: 105 KiB After Width: | Height: | Size: 286 KiB |
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 114 KiB |
Before Width: | Height: | Size: 95 KiB After Width: | Height: | Size: 393 KiB |
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 316 KiB |
Before Width: | Height: | Size: 104 KiB After Width: | Height: | Size: 330 KiB |
Before Width: | Height: | Size: 277 KiB After Width: | Height: | Size: 330 KiB |
Before Width: | Height: | Size: 154 KiB After Width: | Height: | Size: 502 KiB |
Before Width: | Height: | Size: 153 KiB After Width: | Height: | Size: 502 KiB |
Before Width: | Height: | Size: 155 KiB After Width: | Height: | Size: 502 KiB |
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 486 KiB |
Before Width: | Height: | Size: 105 KiB After Width: | Height: | Size: 286 KiB |
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 95 KiB |
Before Width: | Height: | Size: 67 KiB After Width: | Height: | Size: 308 KiB |
Before Width: | Height: | Size: 102 KiB After Width: | Height: | Size: 558 KiB |
Before Width: | Height: | Size: 100 KiB After Width: | Height: | Size: 360 KiB |
Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 330 KiB |
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 163 KiB |
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 254 KiB |
Before Width: | Height: | Size: 104 KiB After Width: | Height: | Size: 295 KiB |
|
@ -31,9 +31,9 @@ tab and then the `Ports` section:
|
|||

|
||||
|
||||
You can see there that for RethinkDB port `28015`, the container is listening on
|
||||
host `192.168.99.100` and port `49154` (in this example - ports may be different
|
||||
host `localhost` and port `32783` (in this example - ports may be different
|
||||
for you). This means you can now reach RethinkDB via a client driver at
|
||||
`192.168.99.100:49154`. Again, this IP address may be different for you.
|
||||
`127.0.0.1:32783`. Again, this IP address may be different for you.
|
||||
|
||||
### (Advanced) Saving Data into RethinkDB with a local Node.js App
|
||||
|
||||
|
@ -48,8 +48,8 @@ Node.js](http://nodejs.org/).
|
|||
|
||||
In your terminal, type:
|
||||
|
||||
$ export RDB_HOST=192.168.99.100 # replace with IP from above step
|
||||
$ export RDB_PORT=49154 # replace with Port from above step
|
||||
$ export RDB_HOST=127.0.0.1 # replace with IP from above step
|
||||
$ export RDB_PORT=32783 # replace with Port from above step
|
||||
$ git clone https://github.com/rethinkdb/rethinkdb-example-nodejs-chat
|
||||
$ cd rethinkdb-example-nodejs-chat
|
||||
$ npm install
|
||||
|
|