Docker instructions, release 1.1.4

This commit is contained in:
Hexagon 2016-12-18 23:51:29 +01:00
parent 5082ba7680
commit 14c2e2ff42
2 changed files with 22 additions and 1 deletions

View File

@ -50,6 +50,26 @@ Browse to ```http://localhost:8080```
Done! 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 Developer setup
======== ========
@ -73,6 +93,7 @@ node server.js
Browse to ```http://localhost:8080``` Browse to ```http://localhost:8080```
Usage Usage
======== ========

View File

@ -1,6 +1,6 @@
{ {
"name" : "cryptalk", "name" : "cryptalk",
"version" : "1.1.3", "version" : "1.1.4",
"description" : "Encrypted HTML5/Node.JS instant chat", "description" : "Encrypted HTML5/Node.JS instant chat",
"main" : "server.js", "main" : "server.js",
"subdomain": "cryptalk", "subdomain": "cryptalk",