# Clustering docker: A guide, with examples.... ## Basic Manual Cluster <center></center> [Bash Code For Basic Manual Cluster](https://steemit.com/beyondbitcoin/@faddat/systems-geek-series-example-bash-for-roll-your-own-docker-platform-manual) Here’s what you’ll need to run docker containers in production in a manual fashion over a cluster of hosts: * Docker Daemon (get.docker.com | bash) * Downloads Docker images * Builds docker images * Runs docker containers * Weave Networking * Gives each container its own internal ip address ex: 10.*.*.* * If needed, provides each host with an internatl IP address as well to make connecting system services to those containers easy * Caddy Web server * Automated HTTPS certificates * The "Caddyfile" can be configured to forward a container address like 10.32.0.1 to a web address with a public IP address like [www.jimmysfriedchicken.com](http://www.jimmysfriedchicken.com). Now, the above platform is manual. It doesn’t automatically assign addresses based on container labels or other factors, and it won’t change the host that containers run on based on system resource availablity. If you want that, you need to know that there are a number of incomplete attempts at achieving such containerization nirvana, such as: ### Docker Clustering Systems <center></center> <center></center> Images from: http://www.nextplatform.com/2016/03/29/rancher-rides-herd-containers-borg-style/ (Thanks!) * Docker Swarm (not built into the docker binary) * Docker Swarm Mode 1.12 (built into the docker binary post 1.12) * Kubernetes * Nomad + Consul + Registrator * Rancher * Mesos (to some degree: Mesos is a cluster manager first and foremost, and it is able to use Docker) * Mesosphere (again, to some degree: Mesosphere is Mesos’s Open Source/Commercially Supported big brother that integrates more PaaS like features.) * Kontina * Flynn ## Fastest (To get running) Automated Cluster <center></center> **Docker Swarm Mode** * Docker Daemon (get.docker.com | bash) * Downloads Docker images * Builds docker images * Runs docker containers * Swarm Mode * Container networking (won’t need weave) * Host Networking * Scheduling * Orchestration (managing computational load) But that leaves a significant gap, or depending on your perspective as to what constitutes a complete platform, several signficiant gaps: * Virtual Hosting / Reverse Proxying (though technically the RP/LB is covered, then again, it’s not covered….) * Storage management * Monitoring Service Metrics * Logging Container Logs But suppose that you could forgeo these items, with the exception of Virtual Hosting. Then, your best bet by far would be to set up Docker-flow-proxy, which mercifully has full support ofr swarm mode since its latest release. So basically docker-flow-proxy is an automated HAPROXY setup that will provide an API to you to call when you launch a container, like this: ---- From https://github.com/vfarcic/docker-flow-proxy: ### **Reconfigure** Reconfigures the proxy using information stored in Consul The following query arguments can be used to send as a *reconfigure* request to *Docker Flow: Proxy*. They should be added to the base address :/v1/docker-flow-proxy/reconfigure. <table> <tr> <td>Query</td> <td>Description</td> <td>Required</td> <td>Default</td> <td>Example</td> </tr> <tr> <td>consulTemplateBePath</td> <td>The path to the Consul Template representing a snippet of the backend configuration. If specified, the proxy template will be loaded from the specified file.</td> <td></td> <td></td> <td>/consul_templates/tmpl/go-demo-be.tmpl</td> </tr> <tr> <td>consulTemplateFePath</td> <td>The path to the Consul Template representing a snippet of the frontend configuration. If specified, the proxy template will be loaded from the specified file.</td> <td></td> <td></td> <td>/consul_templates/tmpl/go-demo-fe.tmpl</td> </tr> <tr> <td>distribute</td> <td>Whether to distribute a request to all the instances of the proxy. Used only in the swarm mode.</td> <td>No</td> <td>false</td> <td>true</td> </tr> <tr> <td>pathType</td> <td>The ACL derivative. Defaults to path_beg. SeeHAProxy path for more info.</td> <td>No</td> <td></td> <td>path_beg</td> </tr> <tr> <td>port</td> <td>The internal port of a service that should be reconfigured. The port is used only in the swarmmode</td> <td>Only in swarmmode</td> <td></td> <td></td> </tr> <tr> <td>serviceDomain</td> <td>The domain of the service. If specified, the proxy will allow access only to requests coming to that domain.</td> <td>No</td> <td></td> <td>ecme.com</td> </tr> <tr> <td>serviceName</td> <td>The name of the service. It must match the name stored in Consul.</td> <td>Yes</td> <td></td> <td>books-ms</td> </tr> <tr> <td>servicePath</td> <td>The URL path of the service. Multiple values should be separated by a comma (,).</td> <td>Yes (unless consulTemplatePath is present)</td> <td></td> <td>/api/v1/books</td> </tr> <tr> <td>skipCheck</td> <td>Whether to skip adding proxy checks. This option is used only in the defaultmode.</td> <td>No</td> <td>false</td> <td>true</td> </tr> </table> ### **Remove** Removes a service from the proxy The following query arguments can be used to send a *remove* request to *Docker Flow: Proxy*. They should be added to the base address [PROXY_IP]:[PROXY_PORT]/v1/docker-flow-proxy/remove. <table> <tr> <td>Query</td> <td>Description</td> <td>Required</td> <td>Default</td> <td>Example</td> </tr> <tr> <td>serviceName</td> <td>The name of the service. It must match the name stored in Consul</td> <td>Yes</td> <td></td> <td>go-demo</td> </tr> <tr> <td>distribute</td> <td>Whether to distribute a request to all the instances of the proxy. Used only in the swarm mode.</td> <td>No</td> <td>false</td> <td>true</td> </tr> </table> ---- So This is probably the fastest path available today to a functional docker platform. Just use docker swarm mode and then add in docker-flow-proxy. There’s a *A LOT* that this doesn’t do but that’s kind of the point. If you want to know more about more advanced implementations, just drop me a line at faddat@gmail.com preferably using Google Hangouts. Next article will be on the easiest to run docker platform: [Rancher](https://rancher.com). ---- ## If you enjoyed this post, please thank @officialfuzzy with a follow and an appearance on his weekly show! ### If you enjoyed this post, please follow me, @faddat!
author | faddat |
---|---|
permlink | roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed |
category | beyondbitcoin |
json_metadata | {"tags":["beyondbitcoin","steem","docker","linux","systems"],"image":["https://www.steemimg.com/images/2016/09/14/Model-of-cluster62821.png","http://www.nextplatform.com/wp-content/uploads/2016/03/rancher-private-container-block-diagram.jpg","http://www.nextplatform.com/wp-content/uploads/2016/03/rancher-block-diagram.jpg","https://www.steemimg.com/images/2016/09/14/CiscoUCSb11e4.jpg"],"links":["https://steemit.com/beyondbitcoin/@faddat/systems-geek-series-example-bash-for-roll-your-own-docker-platform-manual","http://www.jimmysfriedchicken.com","http://www.nextplatform.com/2016/03/29/rancher-rides-herd-containers-borg-style/","https://github.com/vfarcic/docker-flow-proxy:","https://rancher.com"],"users":["officialfuzzy","faddat"]} |
created | 2016-09-14 14:50:09 |
last_update | 2016-09-14 22:01:51 |
depth | 0 |
children | 6 |
last_payout | 2016-10-16 06:19:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 536.294 HBD |
curator_payout_value | 92.643 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,240 |
author_reputation | 36,581,868,473,026 |
root_title | "[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,243,777 |
net_rshares | 103,809,296,266,237 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steempty | 0 | 7,557,283,748,521 | 100% | ||
anonymous | 0 | 260,750,474,166 | 100% | ||
berniesanders | 0 | 10,520,950,426,454 | 40% | ||
summon | 0 | 14,447,235,686,606 | 100% | ||
ned | 0 | 45,550,745,744,869 | 70% | ||
riverhead | 0 | 4,574,379,424,356 | 100% | ||
nextgenwitness | 0 | 68,637,893,167 | 40% | ||
fuzzyvest | 0 | 6,466,330,733,492 | 100% | ||
justin | 0 | 244,093,861,238 | 40% | ||
silver | 0 | 669,350,814,420 | 40% | ||
silversteem | 0 | 1,625,297,820,194 | 40% | ||
nextgencrypto | 0 | 1,804,748,188,403 | 40% | ||
steemservices | 0 | 156,893,363,785 | 40% | ||
joseph | 0 | 1,688,280,888,469 | 100% | ||
bentley | 0 | 12,275,089,626 | 100% | ||
masteryoda | 0 | 615,296,362,725 | 100% | ||
stan | 0 | 121,743,090,314 | 100% | ||
steempower | 0 | 1,330,829,877,066 | 100% | ||
officialfuzzy | 0 | 443,070,954,503 | 100% | ||
cass | 0 | 1,192,017,881,227 | 100% | ||
idol | 0 | 10,124,463,577 | 100% | ||
sakr | 0 | 4,940,816,573 | 100% | ||
chris4210 | 0 | 142,487,935,283 | 100% | ||
brindleswan | 0 | 15,938,729,211 | 100% | ||
jocelyn | 0 | 1,743,037,257 | 100% | ||
craig-grant | 0 | 406,118,989,688 | 100% | ||
jademont | 0 | 17,261,905,745 | 100% | ||
james-show | 0 | 5,641,848,486 | 100% | ||
cryptoctopus | 0 | 1,713,517,353,627 | 100% | ||
hannixx42 | 0 | 58,099,101,285 | 100% | ||
coar | 0 | 268,826,036 | 29% | ||
murh | 0 | 1,060,775,594 | 55.55% | ||
error | 0 | 2,272,273,438 | 100% | ||
tinfoilfedora | 0 | 37,933,525,530 | 50% | ||
andu | 0 | 10,789,521,627 | 100% | ||
faddat | 0 | 82,883,907,097 | 100% | ||
fjccoin | 0 | 1,380,704,224 | 100% | ||
mark-waser | 0 | 5,817,653,327 | 100% | ||
publicworker | 0 | 673,987,968,347 | 100% | ||
asmolokalo | 0 | 143,107,011,053 | 100% | ||
gidlark | 0 | 1,609,351,421 | 100% | ||
zer0sum | 0 | 17,068,690,481 | 100% | ||
rxhector | 0 | 748,749,058 | 100% | ||
ausbitbank | 0 | 18,842,573,064 | 100% | ||
warplat | 0 | 443,375,717 | 100% | ||
snowden | 0 | 114,009,694 | 100% | ||
thegoodguy | 0 | 4,603,699,497 | 100% | ||
biophil | 0 | 37,946,231,746 | 100% | ||
igster | 0 | 24,981,888,908 | 100% | ||
kaptainkrayola | 0 | 10,163,940,831 | 100% | ||
dmacshady | 0 | 2,613,657,825 | 100% | ||
anduweb | 0 | 19,237,325,288 | 100% | ||
lichtblick | 0 | 7,460,869,889 | 100% | ||
creemej | 0 | 35,770,441,346 | 100% | ||
mynameisbrian | 0 | 44,299,070,888 | 100% | ||
blueorgy | 0 | 171,200,859,531 | 100% | ||
heimindanger | 0 | 19,094,532,225 | 100% | ||
bitcoiner | 0 | 4,769,896,604 | 100% | ||
kottai | 0 | 151,907,743 | 100% | ||
masterinvestor | 0 | 24,292,037,757 | 100% | ||
steemchain | 0 | 50,619,397 | 100% | ||
whalepool | 0 | 50,619,397 | 100% | ||
sergey44 | 0 | 283,331,361 | 100% | ||
michaeldodridge | 0 | 15,528,224,421 | 100% | ||
steemster1 | 0 | 153,025,160 | 100% | ||
fabien | 0 | 25,747,727,433 | 100% | ||
rampant | 0 | 35,503,339,407 | 100% | ||
sharon | 0 | 60,565,253 | 100% | ||
merej99 | 0 | 3,034,673,286 | 100% | ||
lillianjones | 0 | 61,714,352 | 100% | ||
laonie1 | 0 | 21,891,717,725 | 100% | ||
laonie2 | 0 | 22,408,779,615 | 100% | ||
laonie3 | 0 | 22,416,672,471 | 100% | ||
sunshine | 0 | 16,598,631,151 | 100% | ||
brendio | 0 | 6,338,796,297 | 100% | ||
kurzer42 | 0 | 74,378,126 | 100% | ||
michellek | 0 | 56,886,318 | 100% | ||
laonie4 | 0 | 22,412,330,850 | 100% | ||
laonie5 | 0 | 22,410,151,004 | 100% | ||
laonie6 | 0 | 22,407,333,813 | 100% | ||
laonie7 | 0 | 22,403,520,876 | 100% | ||
kurtbeil | 0 | 5,480,926,247 | 100% | ||
laonie8 | 0 | 22,400,317,986 | 100% | ||
poteshnik83 | 0 | 61,390,117,021 | 100% | ||
laonie9 | 0 | 22,397,714,217 | 100% | ||
steemleak | 0 | 3,229,522,119 | 100% | ||
bigsambucca | 0 | 115,248,537 | 100% | ||
zionuziriel | 0 | 279,300,528 | 100% | ||
msjennifer | 0 | 62,201,879 | 100% | ||
ciao | 0 | 57,196,572 | 100% | ||
steemo | 0 | 55,449,983 | 100% | ||
steema | 0 | 55,306,941 | 100% | ||
confucius | 0 | 72,902,270 | 100% | ||
jarvis | 0 | 56,157,882 | 100% | ||
matrixdweller | 0 | 12,159,059,019 | 100% | ||
fortuner | 0 | 55,520,042 | 100% | ||
thecurator | 0 | 13,691,865,461 | 40% | ||
mindfreak | 0 | 5,032,568,185 | 100% | ||
johnbyrd | 0 | 53,056,158 | 100% | ||
thomasaustin | 0 | 53,039,566 | 100% | ||
thermor | 0 | 53,037,689 | 100% | ||
ficholl | 0 | 53,048,942 | 100% | ||
widell | 0 | 53,030,738 | 100% | ||
revelbrooks | 0 | 52,651,308 | 100% | ||
laonie10 | 0 | 22,391,941,473 | 100% | ||
bitchplease | 0 | 54,361,669 | 100% | ||
someguy123 | 0 | 82,328,635,478 | 100% | ||
joelbow | 0 | 76,843,163 | 100% | ||
hilarski | 0 | 6,588,161,520 | 20% | ||
mystictot | 0 | 59,043,423 | 100% | ||
curpose | 0 | 52,708,083 | 100% | ||
stephenkendal | 0 | 73,463,882 | 100% | ||
laonie11 | 0 | 21,560,032,854 | 100% | ||
troich | 0 | 52,836,995 | 100% | ||
davidjkelley | 0 | 1,624,586,871 | 100% | ||
crion | 0 | 52,842,496 | 100% | ||
hitherise | 0 | 52,505,412 | 100% | ||
wiss | 0 | 52,496,656 | 100% | ||
rusla | 0 | 140,721,962 | 100% | ||
l0k1 | 0 | 3,932,626,204 | 100% | ||
digital-wisdom | 0 | 15,560,834,759 | 100% | ||
ethical-ai | 0 | 3,708,768,210 | 100% | ||
freesteem | 0 | 50,784,892 | 100% | ||
stroully | 0 | 53,252,658 | 100% | ||
jwaser | 0 | 6,678,973,764 | 100% | ||
thadm | 0 | 52,916,909 | 100% | ||
prof | 0 | 52,915,101 | 100% | ||
thecyclist | 0 | 72,593,947,312 | 50% | ||
yorsens | 0 | 51,465,774 | 100% | ||
bane | 0 | 52,242,652 | 100% | ||
vive | 0 | 51,148,009 | 100% | ||
coad | 0 | 51,142,585 | 100% | ||
bwaser | 0 | 2,615,891,882 | 100% | ||
sofa | 0 | 53,003,720 | 100% | ||
roadhog | 0 | 51,830,988 | 100% | ||
post-successful | 0 | 50,210,467 | 100% | ||
ailo | 0 | 53,055,629 | 100% | ||
freebornangel | 0 | 60,210,153 | 100% | ||
anomaly | 0 | 438,008,616 | 100% | ||
ellepdub | 0 | 2,400,009,033 | 100% | ||
ola1 | 0 | 239,153,978 | 100% | ||
herpetologyguy | 0 | 11,803,347,370 | 100% | ||
eavy | 0 | 51,470,533 | 100% | ||
roto | 0 | 51,484,593 | 100% | ||
drac59 | 0 | 53,227,552 | 100% | ||
morgan.waser | 0 | 4,709,410,490 | 100% | ||
donchate | 0 | 5,085,852,423 | 100% | ||
morse | 0 | 50,433,760 | 100% | ||
tycho | 0 | 158,821,861 | 100% | ||
strong-ai | 0 | 3,607,535,118 | 100% | ||
igtes | 0 | 72,826,233 | 100% | ||
buffett | 0 | 148,119,740 | 100% | ||
sjamayee | 0 | 197,326,430 | 100% | ||
miserableoracle | 0 | 894,464,437 | 100% | ||
dealzgal | 0 | 81,075,259 | 100% | ||
blend | 0 | 209,771,882 | 100% | ||
jessej | 0 | 153,446,886 | 100% | ||
flexoble | 0 | 150,019,316 | 100% |
Nice! A bit complicated but still well done!
author | blend |
---|---|
permlink | re-faddat-roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed-20160914t145058790z |
category | beyondbitcoin |
json_metadata | {"tags":["beyondbitcoin"]} |
created | 2016-09-14 14:52:06 |
last_update | 2016-09-14 14:52:06 |
depth | 1 |
children | 0 |
last_payout | 2016-10-16 06:19:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.098 HBD |
curator_payout_value | 0.032 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 44 |
author_reputation | 814,142,283,510 |
root_title | "[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,243,792 |
net_rshares | 517,306,458,679 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fuzzyvest | 0 | 517,306,458,679 | 7% |
Cool, But... What is Clustering docker? And if it like the Cloud that you can OWN! What's the cost of this in ALL of its GLORY!? Plus this isn't there any more: https://github.com/vfarcic/docker-flow-proxy:
author | jessej |
---|---|
permlink | re-faddat-roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed-20160916t031003848z |
category | beyondbitcoin |
json_metadata | {"tags":["beyondbitcoin"],"links":["https://github.com/vfarcic/docker-flow-proxy:"]} |
created | 2016-09-16 03:09:15 |
last_update | 2016-09-16 03:17:12 |
depth | 1 |
children | 1 |
last_payout | 2016-10-16 06:19:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 206 |
author_reputation | 20,025,748 |
root_title | "[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,261,642 |
net_rshares | 0 |
There's a lot more than docker-flow-proxy. My setup costs me about $160/mo for four skylake quad core servers with 32gb and 2 SSDs each. Here's the link to the bash: https://steemit.com/beyondbitcoin/@faddat/systems-geek-series-example-bash-for-roll-your-own-docker-platform-manual
author | faddat |
---|---|
permlink | re-jessej-re-faddat-roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed-20160916t043354329z |
category | beyondbitcoin |
json_metadata | {"tags":["beyondbitcoin"],"links":["https://steemit.com/beyondbitcoin/@faddat/systems-geek-series-example-bash-for-roll-your-own-docker-platform-manual"]} |
created | 2016-09-16 04:33:54 |
last_update | 2016-09-16 04:33:54 |
depth | 2 |
children | 0 |
last_payout | 2016-10-16 06:19:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 286 |
author_reputation | 36,581,868,473,026 |
root_title | "[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,262,235 |
net_rshares | 0 |
This post has been linked to from another place on Steem. - [Steemit Club 500 - 15 September 2016](https://steemit.com/stats/@topten/steemit-club-500-15-september-2016) by @topten Learn more about [**linkback bot v0.4**](https://steemit.com/steem/@ontofractal/steem-linkback-bot-v0-4-released). Upvote if you want the bot to continue posting linkbacks for your posts. Flag if otherwise. Built by @ontofractal
author | linkback-bot-v0 |
---|---|
permlink | re-faddat-roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed-linkbacks |
category | beyondbitcoin |
json_metadata | {} |
created | 2016-09-16 13:22:00 |
last_update | 2016-09-16 13:22:00 |
depth | 1 |
children | 0 |
last_payout | 2016-10-16 06:19:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 416 |
author_reputation | 1,915,954,976,722 |
root_title | "[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,265,602 |
net_rshares | 0 |
This is sooooo advanced.. I feel like learning rocket science.. The efforts you've put into this.. Awesome... ^^
author | miserableoracle |
---|---|
permlink | re-faddat-roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed-20160914t145755582z |
category | beyondbitcoin |
json_metadata | {"tags":["beyondbitcoin"]} |
created | 2016-09-14 14:57:57 |
last_update | 2016-09-14 14:57:57 |
depth | 1 |
children | 0 |
last_payout | 2016-10-16 06:19:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.098 HBD |
curator_payout_value | 0.032 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 113 |
author_reputation | 1,655,543,921,926 |
root_title | "[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,243,864 |
net_rshares | 517,306,458,679 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fuzzyvest | 0 | 517,306,458,679 | 7% |
Thanks for sharing it. Nice post!
author | zionuziriel |
---|---|
permlink | re-faddat-roll-your-own-docker-platform-faster-and-cheaper-than-the-cloud-more-rebellious-than-legal-weed-20160916t021022941z |
category | beyondbitcoin |
json_metadata | {"tags":["beyondbitcoin"]} |
created | 2016-09-16 02:12:06 |
last_update | 2016-09-16 02:12:06 |
depth | 1 |
children | 0 |
last_payout | 2016-10-16 06:19:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 382,539,730,607 |
root_title | "[SYSTEMS GEEK SERIES] Roll your own Docker Platform: Faster and cheaper than the cloud, more rebellious than legal weed!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,261,228 |
net_rshares | 0 |