Minor documentation fix, 1.1.5
This commit is contained in:
parent
4cb0798467
commit
2f86cffc6e
12
README.md
12
README.md
|
@ -54,6 +54,16 @@ Done!
|
||||||
Docker setup
|
Docker setup
|
||||||
========
|
========
|
||||||
|
|
||||||
|
To run latest cryptalk with docker, exposed on host port 80, simply run the following command to pull it from docker hub
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo docker run -d --restart=always -p 80:8080 hexagon/cryptalk
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
Docker setup (manual)
|
||||||
|
========
|
||||||
|
|
||||||
Clone this repo, enter the new directory.
|
Clone this repo, enter the new directory.
|
||||||
|
|
||||||
Build image
|
Build image
|
||||||
|
@ -66,7 +76,7 @@ Run container, enable start on boot, expose to port 80 at host
|
||||||
sudo docker run -d --restart=always -p 80:8080 hexagon/cryptalk
|
sudo docker run -d --restart=always -p 80:8080 hexagon/cryptalk
|
||||||
```
|
```
|
||||||
|
|
||||||
Browse to ```http://<ip-of-server>:1443/```
|
Browse to ```http://<ip-of-server>/```
|
||||||
|
|
||||||
Done!
|
Done!
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name" : "cryptalk",
|
"name" : "cryptalk",
|
||||||
"version" : "1.1.4",
|
"version" : "1.1.5",
|
||||||
"description" : "Encrypted HTML5/Node.JS instant chat",
|
"description" : "Encrypted HTML5/Node.JS instant chat",
|
||||||
"main" : "server.js",
|
"main" : "server.js",
|
||||||
"subdomain": "cryptalk",
|
"subdomain": "cryptalk",
|
||||||
|
|
Loading…
Reference in New Issue