See also
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
systemctl stop docker.service | |
rm $(which docker) | |
rm /var/run/docker.pid | |
curl -fsSL https://github.com/armhf-docker-library/binaries/releases/download/1.10.1/docker-1.10.1 \ | |
-o /usr/bin/docker | |
chmod u+x /usr/bin/docker | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# open a http://fishshell.com/ and enter this: | |
# start docker daemons | |
for i in (seq 3) | |
set name "dind$i" | |
docker rm -f $name | |
docker run \ | |
--privileged \ | |
--name $name \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run --name consul -d -h dev \ | |
-p 172.16.42.61:8300:8300 \ | |
-p 172.16.42.61:8301:8301 \ | |
-p 172.16.42.61:8301:8301/udp \ | |
-p 172.16.42.61:8302:8302 \ | |
-p 172.16.42.61:8302:8302/udp \ | |
-p 172.16.42.61:8400:8400 \ | |
-p 172.16.42.61:8500:8500 \ | |
-p 172.17.42.1:53:53 \ | |
-p 172.17.42.1:53:53/udp \ |
curl -SOL https://github.com/Metaswitch/calico-docker/releases/download/v0.5.4/calicoctl
chmod +x calicoctl
sudo mv calicoctl /usr/local/bin/
curl -SOL https://experimental.docker.com/builds/Linux/x86_64/docker-latest
chmod +x docker-latest
sudo mv docker-latest /usr/local/bin/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gateway: | |
image: tykio/tyk-gateway | |
ports: | |
- "8080:8080" | |
links: | |
- redis | |
- mongo | |
dashboard: | |
image: tykio/tyk-dashboard |
$ sudo docker-compose up
# event-input-form
$ xdg-open http://localhost:5000/static/index.html
# kibana
$ xdg-open http://localhost:5601/
Manpages on Ubuntu-Website seem to be outdated. Look here instead: Systemd Manpages from Freedesktop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"id": "http://json-schema.org/geojson/geojson.json#", | |
"title": "Geo JSON object", | |
"description": "Schema for a Geo JSON object", | |
"type": "object", | |
"required": [ "type" ], | |
"oneOf": [ | |
{ "$ref": "#/definitions/geometry" }, | |
{ "$ref": "#/definitions/geometryCollection" }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "collectd-overview", | |
"services": { | |
"query": { | |
"list": { | |
"8": { | |
"id": 8, | |
"color": "#508642", | |
"alias": "", | |
"pin": false, |