Difference between revisions of "Network/Services/dev"

From Makers Local 256
Jump to: navigation, search
m (latest is implied)
(rqirc now in the shop)
Line 4: Line 4:
 
[https://github.com/CenturyLinkLabs/watchtower watchtower] checks for new images and restart the docker containers.  Crazy thing is that this should auto update its self.
 
[https://github.com/CenturyLinkLabs/watchtower watchtower] checks for new images and restart the docker containers.  Crazy thing is that this should auto update its self.
 
   docker run -d --name watchtower --restart=always -v /var/run/docker.sock:/var/run/docker.sock centurylink/watchtower
 
   docker run -d --name watchtower --restart=always -v /var/run/docker.sock:/var/run/docker.sock centurylink/watchtower
 +
 
=== xmlrc2rq ===
 
=== xmlrc2rq ===
 
[https://github.com/makerslocal/xmlrc2rq xmlrc2rq] sends wiki changes out over mqtt for use with redqueen.
 
[https://github.com/makerslocal/xmlrc2rq xmlrc2rq] sends wiki changes out over mqtt for use with redqueen.
 
   docker run -d --name  xmlrc2rq --restart=always -p 4455:4455/udp makerslocal/xmlrc2rq
 
   docker run -d --name  xmlrc2rq --restart=always -p 4455:4455/udp makerslocal/xmlrc2rq
 +
 +
=== rqirc ===
 +
[https://github.com/makerslocal/rqirc rqirc] is a IRC-MQTT gateway for the shop.
 +
  docker run -d --name rqirc --restart=always -e NODE_CONFIG="$(cat $PWD/rqirc_config.json)" makerslocal/rqirc:latest

Revision as of 20:17, 28 June 2016

Docker

There are a few things running on this box. Below is a my good effort to keep track of that stuff.

watchtower

watchtower checks for new images and restart the docker containers. Crazy thing is that this should auto update its self.

 docker run -d --name watchtower --restart=always -v /var/run/docker.sock:/var/run/docker.sock centurylink/watchtower

xmlrc2rq

xmlrc2rq sends wiki changes out over mqtt for use with redqueen.

 docker run -d --name  xmlrc2rq --restart=always -p 4455:4455/udp makerslocal/xmlrc2rq

rqirc

rqirc is a IRC-MQTT gateway for the shop.

 docker run -d --name rqirc --restart=always -e NODE_CONFIG="$(cat $PWD/rqirc_config.json)" makerslocal/rqirc:latest