Docker instructions, release 1.1.4
This commit is contained in:
parent
5082ba7680
commit
14c2e2ff42
21
README.md
21
README.md
|
@ -50,6 +50,26 @@ Browse to ```http://localhost:8080```
|
|||
Done!
|
||||
|
||||
|
||||
Docker setup
|
||||
========
|
||||
|
||||
Clone this repo, enter the new directory.
|
||||
|
||||
Build image
|
||||
```bash
|
||||
docker build . --tag="hexagon/cryptalk"
|
||||
```
|
||||
|
||||
Run container, enable start on boot, expose to port 80 at host
|
||||
```bash
|
||||
sudo docker run -d --restart=always -p 80:8080 hexagon/cryptalk
|
||||
```
|
||||
|
||||
Browse to ```http://<ip-of-server>:1443/```
|
||||
|
||||
Done!
|
||||
|
||||
|
||||
Developer setup
|
||||
========
|
||||
|
||||
|
@ -73,6 +93,7 @@ node server.js
|
|||
|
||||
Browse to ```http://localhost:8080```
|
||||
|
||||
|
||||
Usage
|
||||
========
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name" : "cryptalk",
|
||||
"version" : "1.1.3",
|
||||
"version" : "1.1.4",
|
||||
"description" : "Encrypted HTML5/Node.JS instant chat",
|
||||
"main" : "server.js",
|
||||
"subdomain": "cryptalk",
|
||||
|
|
Loading…
Reference in New Issue