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
{ | |
"container": { | |
"type": "DOCKER", | |
"docker": { | |
"image": "google/cadvisor:latest" | |
}, | |
"volumes": [ | |
{ | |
"containerPath": "/rootfs", | |
"hostPath": "/", |
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
curl \ | |
-X POST \ | |
-H "Content-Type: application/json" \ | |
http://localhost:8080/v2/apps [email protected] |
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 -d \ | |
--name consul \ | |
-p 8300:8300 \ | |
-p 8301:8301 \ | |
-p 8301:8301/udp \ | |
-p 8302:8302 \ | |
-p 8302:8302/udp \ | |
-p 8400:8400 \ | |
-p 8500:8500 \ | |
-p 8600: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
docker run \ | |
--name registrator \ | |
--link consul:consul \ | |
-v /var/run/docker.sock:/tmp/docker.sock \ | |
gliderlabs/registrator consul://consul:8500 |
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 -d \ | |
--name backends \ | |
-p 10000:10000 \ | |
-v /var/run/docker.sock:/var/run/docker.sock \ | |
progrium/ambassadord --omnimode |
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 \ | |
--rm \ | |
--privileged \ | |
--net container:backends \ | |
progrium/ambassadord --setup-iptables |
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
#!/bin/bash | |
ifconfig $1 down | |
iwconfig $1 mode monitor | |
iwconfig $1 txpower off | |
iw reg set BO | |
iwconfig $1 txpower 30 |
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 \ | |
-d \ | |
--name vnc \ | |
-p 5900:5900 \ | |
bwbush/vnc | |
# Use safari: vnc://<hostname>, vnc-user/vnc-password |
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 -d \ | |
--name guacd \ | |
mattgruter/guacamole-guacd |
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 -d \ | |
--name guaca-db \ | |
mattgruter/guacamole-db |