$ sudo docker-compose up
# event-input-form
$ xdg-open http://localhost:5000/static/index.html
# kibana
$ xdg-open http://localhost:5601/
This file contains hidden or 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
| #!ipxe | |
| set base-url http://alpha.release.core-os.net/amd64-usr/current | |
| kernel ${base-url}/coreos_production_pxe.vmlinuz sshkey="ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAYQC2PxAKTLdczK9+RNsGGPsz0eC2pBlydBEcrbI7LSfiN7Bo5hQQVjki+Xpnp8EEYKpzu6eakL8MJj3E28wT/vNklT1KyMZrXnVhtsmOtBKKG/++odpaavdW2/AU0l7RZiE= coreos pxe demo" | |
| initrd ${base-url}/coreos_production_pxe_image.cpio.gz | |
| boot |
This file contains hidden or 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, |
This file contains hidden or 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 |
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 hidden or 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
| // Tree-Structure from https://gremlin-users.googlegroups.com/attach/eb75b39c6330a874/Simple+Tree.png?pli=1&view=1&part=4 | |
| g = new TinkerGraph() | |
| A = g.addVertex('A') | |
| B = g.addVertex('B') | |
| g.addEdge(A, B, 'child') | |
| C = g.addVertex('C') | |
| g.addEdge(A, C, 'child') | |
| D = g.addVertex('D') |
This file contains hidden or 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 \ |
This file contains hidden or 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 hidden or 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" }, |
OlderNewer