<center>https://cdn.steemitimages.com/DQmZvBkuJePehh9pphd9JyH1VjvyoKv5Hjswd7o7JnwgRHF/Hivemind%20Live.jpg</center> ## Project Information Repository: https://github.com/Jolly-Pirate/hivemind-docker Project Name: hivemind-docker ## Introduction Hive (https://github.com/steemit/hivemind) is a "consensus interpretation" layer for the Steem blockchain, maintaining the state of social features such as post feeds, follows, and communities. Written in Python, it synchronizes an SQL database with chain state, providing developers with a more flexible/extensible alternative to the raw steemd API. I'm using docker-compose for this project because of its flexibility in managing multiple containers, and to minimize the use of long complicated docker cli commands. With dependency checks in the scripts, I covered many possibilities to make a hivemind deployment easy. The tricky and frustrating part was to get postgres to use a mapped local database outside of docker volumes. The reason for that is to have better control of the database and to simplify redeployment to other servers, instead of having to redownload/reimport a dump which takes hours. Postgres is picky about permissions, plus its native command `initdb` was causing errors when synchronizing an imported hivemind dump. After solving the problems with some workarounds and thoroughly testing, hivemind-docker was finally ready. --- ### <center>An elephant and a whale can be friends</center> <center>https://info.crunchydata.com/hubfs/DockerNPostgresLogos.png</center> --- ## Features - High flexibility with simple commands - Local storage of the database for easier redeployment in an infrastructure - Cli commands to control the containers ## Requirements - Docker Engine 18.06.0+ - PostgreSQL 10+ - 2.5GB of memory for hivemind synch process - 250GB storage for the database ## Git Installation ``` git clone https://github.com/Jolly-Pirate/hivemind-docker.git cd hivemind-docker chmod +x run.sh ``` ## Preparation Do the following steps sequentially: 1. Create a .env file from the example and secure it\ `cp .env.example .env` `chmod 700 .env` 2. Carefully edit all the variables in the .env file and save it\ `nano .env` 3. Preinstall tools and NTP synchronization\ `./run.sh preinstall` 4. Install docker and docker-compose\ `./run.sh installdocker` 5. Build the needed containers\ `./run.sh build` ## Running Postgres Hivemind requires a postgres backend. Start postgres with these two commands consecutively: `./run.sh initdb` (will initialize a fresh database cluster)\ `./run.sh start postgres` (will start postgres using the credentials from .env) ## Importing database dump For an efficient way to get hivemind going with a short DB synchronization, download a database dump (from a daily postgres snapshot), and import it. The dump was done with PostgreSQL 10.8. ETA depends on your internet speed, storage and CPU. NOTE: The download and import will run in screen sessions and automatically exit when complete. After the dump file is fully read, the import may seem stalled, but it's actually creating the indexes. Do not stop the process with `ctrl-c` or close the session . You can detach from the session with `ctrl-a-d`. `./run.sh importdb` **ETA ~3h** ## Running Hivemind After the DB import, start hivemind to synchronize the missing blocks. `./run.sh start hive` **ETA ~1h** ## Running Hivemind and Postgres simultaneously If you didn't do the 3 steps above, hivemind can be ran from scratch, the script will create a new postgres database, then synchronize it with an endpoint RPC server. However be advised that this approach is lenghthy, depending on your machine specs. For this *plug-n-play* solution, run the following command: `./run.sh start all` **ETA few days** To stop the hivemind and postgres containers `./run.sh stop all` If you already imported the database, doing `./run.sh start all` will resume synchronization from the last processed block. ## Testing Hivemind Once hivemind is fully synchronized, you can test it by querying it on the port you defined in `.env`, for example `HIVEMIND_PORT=8080`: `./run.sh testhive` which runs this command: `curl -s --data '[{"jsonrpc":"2.0", "method":"condenser_api.get_follow_count", "params":{"account":"initminer"}, "id":1}]' http://localhost:8080 | jq -r` and gives this result: ``` [ { "jsonrpc": "2.0", "result": { "account": "initminer", "following_count": 0, "follower_count": 15 }, "id": 1 } ] ``` ## Running Jussi Jussi is an optional reverse proxy, its configuration won't be covered in this guide. You can check it out at https://github.com/steemit/jussi Edit and place the DEV_config.json file in the hivemind-docker folder, then start it with: `./run.sh start jussi` You can test it with `./run.sh testjussi` ## Checking the logs At any time, you can check the logs with: `./run.sh logs` Press `ctrl-c` to stop following the logs. ## Project command options The commands for managing the docker project are listed by typing: `./run.sh` Here's a summary of the available commands: ``` preinstall - preinstall tools and NTP synchronization installdocker - install docker and docker-compose build - stop the running containers and (re)build all the images initdb - initialize database cluster (e.g. postgresql database) importdb - download and import the database dump start|stop|restart (e.g. start all) all - initdb+postgresql+hivemind postgres - postgresql container (with initdb dependency) hive - hivemind container (with postgresql dependency) jussi - jussi reverse proxy enter - enter a container with bash shell; e.g. enter hive logs - live logs of the running containers status - check the containers status testhive - test a hive API call to hivemind testjussi - test a steemd API call to jussi dbsize - check the database size dbactivity - check the database activity ``` ## Proof of work done Github account: https://github.com/Jolly-Pirate ### Acknowledgment Thanks to @emrebeyler. His guide on setting up hivemind was an inspiration for this project. - https://steemit.com/hivemind/@emrebeyler/steps-to-restore-a-hivemind-database-snapshot - https://steemit.com/hivemind/@emrebeyler/update-to-daily-hivemind-snapshots Also, thanks for providing the community with a daily hivemind database snapshot. <center><sub>Posted via https://www.palnet.io</sub> [](https://www.palnet.io)</center> *** <center> #### Available & Reliable. I am your Witness. I want to represent You. ##### 🗳 If you like what I do, consider voting for me 🗳 [](https://steemit.com/~witnesses) ###### Check my guide about [Voting for Witnesses](https://steemit.com/witness-category/@drakos/tips-and-guidelines-voting-for-witnesses). ###### Go to https://steemit.com/~witnesses. Next to my name, click the https://steemitimages.com/DQmYq3yGqzvbK4JQFudeXoDp6PEtdny8vSvX5swqW5sA2fE/chevron-up.png once. ###### Alternatively you can use SteemConnect to [vote for me](https://app.steemconnect.com/sign/account-witness-vote?witness=drakos&approve=1) or [set me as proxy](https://app.steemconnect.com/sign/account-witness-proxy?proxy=drakos&approve=1) </center>
author | drakos |
---|---|
permlink | hivemind-easy-deployment-with-hivemind-docker |
category | utopian-io |
json_metadata | {"tags":["utopian-io","development","docker","hivemind","palnet"],"users":["emrebeyler"],"image":["https://cdn.steemitimages.com/DQmZvBkuJePehh9pphd9JyH1VjvyoKv5Hjswd7o7JnwgRHF/Hivemind%20Live.jpg","https://info.crunchydata.com/hubfs/DockerNPostgresLogos.png","https://cdn.steemitimages.com/DQma2sXTD5C79ByLLUddrjzyztXK2xCbzz2xPo4FtZfVpxP/plcoin-onblack_gif.gif","https://steemitimages.com/DQmfRx7jNSrFAnRZPrKRHLDxR22gRFYTBnKr2uLNdVty3MG/drakos-witness-thanks.gif","https://steemitimages.com/DQmYq3yGqzvbK4JQFudeXoDp6PEtdny8vSvX5swqW5sA2fE/chevron-up.png"],"links":["https://github.com/Jolly-Pirate/hivemind-docker","https://github.com/steemit/hivemind","https://github.com/steemit/jussi","https://github.com/Jolly-Pirate","https://steemit.com/hivemind/@emrebeyler/steps-to-restore-a-hivemind-database-snapshot","https://steemit.com/hivemind/@emrebeyler/update-to-daily-hivemind-snapshots","https://www.palnet.io","https://steemit.com/~witnesses","https://steemit.com/witness-category/@drakos/tips-and-guidelines-voting-for-witnesses","https://app.steemconnect.com/sign/account-witness-vote?witness=drakos&approve=1","https://app.steemconnect.com/sign/account-witness-proxy?proxy=drakos&approve=1"],"app":"steemit/0.1","format":"markdown"} |
created | 2019-06-16 17:58:00 |
last_update | 2019-07-23 12:51:00 |
depth | 0 |
children | 35 |
last_payout | 2019-06-23 17:58:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 126.216 HBD |
curator_payout_value | 35.247 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,529 |
author_reputation | 112,280,226,665,329 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,733,720 |
net_rshares | 287,694,173,098,429 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blocktrades | 0 | 68,099,425,253,611 | 56% | ||
tombstone | 0 | 6,381,065,110,842 | 24.22% | ||
bue | 0 | 2,507,936,029,297 | 100% | ||
bleepcoin | 0 | 123,038,580,446 | 50% | ||
acidyo | 0 | 6,956,988,800,390 | 50% | ||
thecryptodrive | 0 | 820,153,588,915 | 100% | ||
kaylinart | 0 | 155,621,626,921 | 100% | ||
olyup | 0 | 60,511,097,459 | 100% | ||
furion | 0 | 1,738,159,107,384 | 100% | ||
cdubendo | 0 | 49,661,059,140 | 100% | ||
yury-vas | 0 | 551,101,850 | 1% | ||
ausbitbank | 0 | 1,665,776,643,304 | 100% | ||
transisto | 0 | 837,307,341,311 | 100% | ||
nascimentoab | 0 | 3,500,030,054 | 100% | ||
arcange | 0 | 1,226,248,030,286 | 100% | ||
dimon14 | 0 | 36,600,462,560 | 96% | ||
raphaelle | 0 | 35,695,691,137 | 100% | ||
timcliff | 0 | 580,382,826,273 | 78% | ||
nickskywalker | 0 | 11,338,203,251 | 30% | ||
warofcraft | 0 | 42,871,598,387 | 20% | ||
jphamer1 | 0 | 1,897,303,229,515 | 100% | ||
scaredycatguide | 0 | 31,284,547,415 | 20% | ||
rufans | 0 | 29,329,116,782 | 100% | ||
stevescoins | 0 | 131,972,152,157 | 75% | ||
someguy123 | 0 | 2,620,555,987,508 | 100% | ||
foxkoit | 0 | 69,857,919,908 | 50% | ||
justyy | 0 | 422,126,691,560 | 18% | ||
clayboyn | 0 | 28,242,099,482 | 30% | ||
lilia737 | 0 | 1,638,380,526 | 100% | ||
ura-soul | 0 | 132,991,498,112 | 48% | ||
cardinalkennedy | 0 | 323,563,444 | 20% | ||
barton26 | 0 | 9,999,391,252 | 100% | ||
sirlunchthehost | 0 | 9,802,644,429 | 100% | ||
jamzed | 0 | 94,447,940,448 | 100% | ||
primerz | 0 | 351,331,065 | 100% | ||
teamhumble | 0 | 100,573,737,906 | 100% | ||
v4vapid | 0 | 14,974,226,235,899 | 100% | ||
baah | 0 | 12,015,545,823 | 100% | ||
amariespeaks | 0 | 3,921,619,074 | 32% | ||
zephyraijunzo | 0 | 109,365,108,048 | 100% | ||
markkujantunen | 0 | 61,008,376,297 | 37% | ||
gric | 0 | 12,102,933,563 | 100% | ||
danielsaori | 0 | 29,045,115,830 | 50% | ||
ucukertz | 0 | 676,997,183 | 100% | ||
andrianna | 0 | 39,735,248,499 | 100% | ||
daudimitch | 0 | 16,220,641,417 | 100% | ||
tbnfl4sun | 0 | 20,874,206,933 | 15% | ||
marxrab | 0 | 3,462,838,075 | 4% | ||
oendertuerk | 0 | 178,821,907,010 | 50% | ||
sepracore | 0 | 2,768,591,995 | 100% | ||
ma1neevent | 0 | 18,894,224,079 | 20% | ||
malay11 | 0 | 891,625,414 | 50% | ||
manuel78 | 0 | 811,713,102 | 20% | ||
barbara-orenya | 0 | 213,547,606,893 | 100% | ||
steemchiller | 0 | 264,664,824,795 | 100% | ||
followbtcnews | 0 | 119,251,185,724 | 11% | ||
jakipatryk | 0 | 30,066,640,497 | 100% | ||
jga | 0 | 5,345,037,088 | 30.28% | ||
kubbyelizabeth | 0 | 2,929,084,004 | 5% | ||
isaria | 0 | 53,593,789,743 | 25% | ||
helo | 0 | 82,122,950,660 | 30.53% | ||
handofzara | 0 | 1,806,903,073 | 10% | ||
bsameep | 0 | 6,588,606,327 | 100% | ||
schoolforsdg4 | 0 | 29,516,057,968 | 20% | ||
masterthematrix | 0 | 52,834,715,636 | 42.5% | ||
bitcoinflood | 0 | 112,135,680,579 | 10% | ||
booster | 0 | 33,005,419,360,658 | 40.18% | ||
mahdiyari | 0 | 178,890,043,894 | 100% | ||
crimsonclad | 0 | 53,663,498,310 | 11% | ||
jackmiller | 0 | 42,364,064,513 | 100% | ||
raizel | 0 | 38,374,778,110 | 100% | ||
drakos | 0 | 3,394,073,066,000 | 100% | ||
pibara | 0 | 34,775,437,689 | 24% | ||
howtostartablog | 0 | 6,154,285,713 | 24% | ||
vachemorte | 0 | 63,494,218,083 | 100% | ||
mirhimayun | 0 | 332,806,863 | 20% | ||
roxane | 0 | 843,258,627,549 | 50% | ||
warfeed | 0 | 300,190,529 | 37.5% | ||
erickpinos | 0 | 59,043,993,948 | 100% | ||
cryptopie | 0 | 197,996,491,338 | 33% | ||
discordiant | 0 | 2,358,704,158 | 11% | ||
codingdefined | 0 | 46,156,180,302 | 30.53% | ||
fat-elvis | 0 | 1,598,543,004 | 10% | ||
heart-to-heart | 0 | 23,177,230,788 | 100% | ||
etka | 0 | 7,949,899,793 | 100% | ||
synrg | 0 | 100,461,886,272 | 100% | ||
msp-lovebot | 0 | 100,011,444,377 | 15% | ||
appreciator | 0 | 30,817,360,257,090 | 38.47% | ||
rollingthunder | 0 | 119,966,465 | 5% | ||
themarkymark | 0 | 4,588,375,017,407 | 100% | ||
wargof | 0 | 196,608,872 | 10% | ||
dwingsworld | 0 | 435,371,737 | 10% | ||
yanes94 | 0 | 9,950,512,247 | 100% | ||
yoogyart | 0 | 8,781,730,904 | 40% | ||
davedickeyyall | 0 | 347,409,361 | 0.8% | ||
supriya1993 | 0 | 1,911,984,590 | 50% | ||
alexzicky | 0 | 22,918,610,395 | 15% | ||
jasonbu | 0 | 49,419,762,009 | 100% | ||
ayubloaded | 0 | 2,141,698,096 | 100% | ||
crypto-whiz | 0 | 879,223,078 | 100% | ||
muziclub | 0 | 321,412,688 | 50% | ||
horpey | 0 | 282,632,121,037 | 100% | ||
himshweta | 0 | 1,269,481,659 | 50% | ||
bronevik | 0 | 423,271,215 | 100% | ||
philodendron | 0 | 16,126,152,825 | 100% | ||
silverstackeruk | 0 | 227,348,733 | 1% | ||
akilie1029 | 0 | 20,525,461,228 | 100% | ||
buildawhale | 0 | 31,240,282,718,159 | 58.21% | ||
buckydurddle | 0 | 22,299,629,705 | 39.68% | ||
therealwolf | 0 | 1,520,254,413,802 | 100% | ||
taskmaster4450 | 0 | 30,625,888,682 | 4% | ||
storysharing | 0 | 23,166,786,789 | 100% | ||
jinger | 0 | 4,137,117,975 | 48.84% | ||
espoem | 0 | 10,640,309,029 | 5% | ||
filipino | 0 | 1,029,437,038 | 10% | ||
yabapmatt | 0 | 4,235,025,462,861 | 100% | ||
mcfarhat | 0 | 100,890,497,416 | 50% | ||
gvand | 0 | 1,440,194,900 | 70% | ||
vishalsingh4997 | 0 | 286,819,000 | 33% | ||
pierlave | 0 | 6,042,222,137 | 100% | ||
khaleelkazi | 0 | 12,408,522,891 | 15% | ||
morahn | 0 | 3,737,349,424 | 50% | ||
wilkynson | 0 | 360,718,481 | 25% | ||
galorum | 0 | 2,969,692,309 | 100% | ||
loshcat | 0 | 2,615,654,346 | 100% | ||
momskitchen | 0 | 63,470,375 | 41% | ||
jatinhota | 0 | 13,974,457,739 | 10% | ||
lifecruiser | 0 | 8,092,364,946 | 50% | ||
baloox | 0 | 544,966,078 | 10% | ||
paintingangels | 0 | 33,650,816,043 | 100% | ||
utopian-io | 0 | 54,942,135,987,407 | 60.56% | ||
inuke | 0 | 5,277,238,852 | 100% | ||
zahidzzs | 0 | 75,217,871,559 | 100% | ||
jaff8 | 0 | 73,837,611,536 | 30.53% | ||
sayed53 | 0 | 188,938,848 | 50% | ||
emrebeyler | 0 | 210,652,869,929 | 100% | ||
bobinson | 0 | 33,965,125,689 | 30% | ||
seanlloyd | 0 | 178,599,415 | 1% | ||
paulmoon410 | 0 | 69,640,252 | 10% | ||
craigahamilton | 0 | 871,330,049 | 25% | ||
newsrx | 0 | 193,287,738 | 12.28% | ||
vishire | 0 | 178,996,597 | 20% | ||
mytechtrail | 0 | 3,452,578,624 | 15% | ||
silenteyes | 0 | 3,447,146,273 | 50% | ||
ocupation | 0 | 50,542,884,655 | 100% | ||
skycae | 0 | 1,031,694,428 | 8% | ||
raymondbruce | 0 | 1,886,150,093 | 50% | ||
thirumurugan | 0 | 69,848,416 | 20% | ||
chullbull | 0 | 229,237,007 | 50% | ||
shonyishere | 0 | 3,917,650,970 | 72% | ||
akashs | 0 | 519,119,028 | 100% | ||
lpv | 0 | 826,797,538 | 2.5% | ||
faetee | 0 | 2,192,254,226 | 50% | ||
elex17 | 0 | 143,590,513 | 10% | ||
rojinstha13 | 0 | 98,203,983 | 25% | ||
adasq | 0 | 97,697,905,761 | 100% | ||
duke77 | 0 | 409,650,406 | 5% | ||
frames | 0 | 1,404,673,044 | 25% | ||
guardianofsteem | 0 | 245,610,088 | 50% | ||
carsonroscoe | 0 | 7,672,609,165 | 100% | ||
casualwriter | 0 | 244,392,476 | 50% | ||
bestbroplayer | 0 | 421,967,963,975 | 100% | ||
happydaddyfr | 0 | 164,364,037 | 1% | ||
amosbastian | 0 | 128,799,112,065 | 30.53% | ||
tdre | 0 | 93,172,364,463 | 100% | ||
hijosdelhombre | 0 | 52,718,321,004 | 50% | ||
grzesiekb | 0 | 324,268,165,819 | 100% | ||
adesojisouljay | 0 | 2,115,652,857 | 100% | ||
senstless | 0 | 12,150,101,649 | 10% | ||
znnuksfe | 0 | 1,938,569,810 | 100% | ||
jankos55 | 0 | 28,922,480,748 | 100% | ||
bala41288 | 0 | 3,890,747,515 | 8% | ||
everything-4you | 0 | 3,864,418,337 | 100% | ||
perkyyoung | 0 | 87,214,827 | 25% | ||
womenempowerment | 0 | 8,728,619,976 | 20% | ||
edicted | 0 | 297,784,590,887 | 100% | ||
davemccoy | 0 | 6,981,549,406 | 8% | ||
vgholdingsllc | 0 | 7,451,486,740 | 15% | ||
ajai | 0 | 548,297,941 | 100% | ||
wisewoof | 0 | 262,925,261 | 4% | ||
marc-allaria | 0 | 6,149,299,201 | 25% | ||
gandalfthewhite | 0 | 791,103,898 | 100% | ||
indiaunited | 0 | 99,973,403,341 | 100% | ||
videosteemit | 0 | 192,005,259,586 | 100% | ||
voltagrou | 0 | 3,993,699,965 | 20% | ||
sargoon | 0 | 861,109,197 | 6.14% | ||
vianney | 0 | 213,804,869 | 20% | ||
shaidon | 0 | 14,676,124,587 | 100% | ||
curiousshibby | 0 | 442,328,146 | 10% | ||
themanwithnoname | 0 | 1,864,052,618 | 10% | ||
peopleofthenight | 0 | 241,916,463 | 50% | ||
mondodidave73 | 0 | 190,454,551 | 9% | ||
dongentle2 | 0 | 2,473,361,364 | 100% | ||
silentscreamer | 0 | 33,267,310,858 | 100% | ||
leguidecrypto | 0 | 918,583,254 | 10% | ||
mrsatish | 0 | 245,590,626 | 50% | ||
transilvaniaman | 0 | 550,749,790 | 100% | ||
sillentkiller | 0 | 334,996,534 | 50% | ||
gvincentjosephm | 0 | 5,702,519,061 | 100% | ||
green77 | 0 | 2,003,898,369 | 89% | ||
naveenboktapa | 0 | 244,333,485 | 50% | ||
kingsman2 | 0 | 247,828,445 | 50% | ||
shivamraichura | 0 | 99,407,408 | 25% | ||
rhodium | 0 | 415,405,417 | 100% | ||
kriptoman | 0 | 241,706,805 | 50% | ||
thebluewin | 0 | 123,782,256,724 | 100% | ||
liberviarum | 0 | 426,573,065 | 15% | ||
cyprianj | 0 | 1,406,562,929 | 30.28% | ||
saystraight | 0 | 445,346,526 | 100% | ||
memeitbaby | 0 | 173,824,891 | 30% | ||
ayushthedreamer | 0 | 952,424,807 | 50% | ||
arslan007 | 0 | 1,371,808,612 | 100% | ||
fego | 0 | 46,682,954,436 | 30.53% | ||
mahmuliadi | 0 | 252,204,164 | 100% | ||
cryptofuwealth | 0 | 59,999,045 | 11% | ||
rv15 | 0 | 520,155,549 | 100% | ||
reazuliqbal | 0 | 46,128,798,295 | 30% | ||
shahaan | 0 | 2,884,630,918 | 50% | ||
properfraction | 0 | 3,336,843,815 | 100% | ||
willsparks88 | 0 | 1,255,037,077 | 5% | ||
myprecious | 0 | 6,352,134,038 | 20% | ||
mchandra | 0 | 1,176,684,701 | 5% | ||
steinreich | 0 | 70,522,369,850 | 10% | ||
mickeyvera | 0 | 248,151,670 | 60% | ||
omoyiwolabusayo | 0 | 71,012,465 | 50% | ||
l-s-h | 0 | 267,287,823,249 | 100% | ||
raka | 0 | 245,314,464 | 50% | ||
azharmaulana | 0 | 174,952,638 | 50% | ||
ronaldoavelino | 0 | 1,121,630,614 | 0.6% | ||
otto11 | 0 | 154,778,329 | 50% | ||
raqibul | 0 | 245,347,614 | 50% | ||
thesport | 0 | 90,833,703 | 25% | ||
dixiesilverminer | 0 | 445,755,805 | 10% | ||
juanmanuellopez1 | 0 | 1,652,358,242 | 10% | ||
jungch98 | 0 | 1,933,232,058 | 100% | ||
rzs | 0 | 957,717,729 | 50% | ||
jordangerder | 0 | 8,248,363,038 | 100% | ||
chuuuckie | 0 | 1,391,997,901 | 1.25% | ||
lartist-zen | 0 | 183,142,326 | 10% | ||
imcore | 0 | 1,024,526,772 | 10% | ||
naruitchi | 0 | 1,203,474,663 | 10% | ||
hrisheekrayb | 0 | 244,392,794 | 50% | ||
quochuy | 0 | 152,730,548,878 | 100% | ||
rainbowbala | 0 | 1,779,796,249 | 100% | ||
maujmasti | 0 | 610,165,016 | 100% | ||
kendallron | 0 | 497,456,526 | 30% | ||
humash604 | 0 | 245,100,099 | 50% | ||
hatuvera | 0 | 161,517,126 | 10% | ||
cryptofrench | 0 | 314,011,137 | 10% | ||
andreasgrubhofer | 0 | 67,268,110,911 | 80% | ||
kejora05 | 0 | 160,711,940 | 50% | ||
fanbasefr | 0 | 425,949,756 | 10% | ||
friendsofgondor | 0 | 704,162,631,443 | 80% | ||
jpchabry | 0 | 647,118,386 | 100% | ||
indayclara | 0 | 640,656,795 | 15% | ||
atanas007 | 0 | 5,941,639,548 | 100% | ||
meedo | 0 | 201,174,764 | 100% | ||
animals.save | 0 | 310,099,119 | 100% | ||
albatar | 0 | 83,697,141 | 10% | ||
pricasso | 0 | 678,846,648 | 100% | ||
ragavee | 0 | 240,328,465 | 50% | ||
pinas | 0 | 458,820,593 | 50% | ||
fernandosoder | 0 | 401,822,212 | 10% | ||
abbyrich | 0 | 69,500,039 | 25% | ||
commonlaw | 0 | 4,044,084,178 | 35% | ||
insaneworks | 0 | 24,970,079,724 | 50% | ||
supernews | 0 | 172,053,951 | 50% | ||
rustle | 0 | 367,530,800 | 54.32% | ||
dniceguy | 0 | 148,790,649 | 35% | ||
ssg-community | 0 | 1,180,022,646,508 | 20.6% | ||
renac | 0 | 71,379,010 | 10% | ||
moneybaby | 0 | 772,701,642 | 5% | ||
apshamilton | 0 | 186,011,069,150 | 100% | ||
indiaunited-bot | 0 | 6,507,763,812 | 100% | ||
tammydixon | 0 | 187,474,293 | 50% | ||
kafupraise | 0 | 125,098,366 | 36% | ||
illusions16 | 0 | 244,390,760 | 50% | ||
prototyp125 | 0 | 404,194,224 | 100% | ||
mickvir | 0 | 55,399,163,233 | 100% | ||
yomismosoy | 0 | 416,351,741 | 24% | ||
boukdir | 0 | 131,119,484 | 16% | ||
vezo | 0 | 1,106,916,995 | 100% | ||
bestofph | 0 | 8,863,400,136 | 30% | ||
andi9999 | 0 | 159,625,481 | 50% | ||
hamismsf | 0 | 119,636,173,412 | 25% | ||
ulockblock | 0 | 89,058,325,075 | 25.41% | ||
sweettais | 0 | 12,228,744,668 | 100% | ||
erbeebassie | 0 | 1,996,761,156 | 100% | ||
raiseup | 0 | 16,120,399,295 | 100% | ||
deepdives | 0 | 235,750,911,037 | 100% | ||
cryptouno | 0 | 433,333,364 | 5% | ||
rafaeluriel | 0 | 248,999,724 | 50% | ||
rajivv203 | 0 | 245,274,321 | 50% | ||
takezou | 0 | 9,967,544,475 | 51% | ||
girlsfoundation | 0 | 671,016,815,008 | 100% | ||
jenniferjulius | 0 | 619,027,890 | 50% | ||
chappertron | 0 | 27,072,195,976 | 100% | ||
rgirgin | 0 | 444,243,513 | 100% | ||
princejain123 | 0 | 59,849,012 | 50% | ||
boykeren | 0 | 89,033,563 | 100% | ||
mansi94 | 0 | 90,294,429 | 5% | ||
satari | 0 | 319,883,331 | 100% | ||
meliq | 0 | 548,732,298 | 100% | ||
pedrohmc23 | 0 | 508,113,172 | 100% | ||
steem-ua | 0 | 941,573,502,297 | 12.28% | ||
jensopinion | 0 | 256,296,898 | 100% | ||
eu-id | 0 | 623,323,430 | 10% | ||
eu-africa | 0 | 3,450,635,219 | 100% | ||
elemari | 0 | 117,868,902 | 100% | ||
bettervision | 0 | 42,035,779,564 | 50% | ||
kesskin | 0 | 149,728,499 | 100% | ||
anime7 | 0 | 524,324,979 | 100% | ||
jpbliberty | 0 | 14,239,576,064 | 25% | ||
bluerobo | 0 | 17,312,949,707 | 100% | ||
blind-spot | 0 | 4,644,148,597 | 25% | ||
loliver | 0 | 3,904,848,409 | 100% | ||
andresurrego | 0 | 13,758,627,267 | 60% | ||
waleedtee | 0 | 79,701,442,181 | 100% | ||
brandnewaccount | 0 | 805,413,423 | 100% | ||
shit-posts | 0 | 1,017,516,580 | 100% | ||
rihanna2 | 0 | 478,860,341 | 100% | ||
aboss | 0 | 627,241,355 | 50% | ||
kuretachinen | 0 | 1,502,919,694 | 100% | ||
alexei83 | 0 | 59,326,517 | 100% | ||
cpt-sparrow | 0 | 22,494,618,308 | 12.5% | ||
senstlessmonster | 0 | 270,890,736 | 10% | ||
vcdragon | 0 | 15,110,332,664 | 100% | ||
initech | 0 | 1,355,544,853 | 100% | ||
pm-light | 0 | 1,018,675,624 | 100% | ||
knifer | 0 | 163,266,893 | 100% | ||
superbouncer | 0 | 863,134,770 | 100% | ||
bazookaguy | 0 | 434,237,229 | 100% | ||
welcomes | 0 | 239,111,758,466 | 100% | ||
chemicaltroup | 0 | 390,779,572 | 100% | ||
cooker | 0 | 725,237,061 | 100% | ||
moz333 | 0 | 33,627,756,133 | 100% | ||
dicetime | 0 | 43,755,807,830 | 30.28% | ||
dtrade | 0 | 1,439,126,036 | 100% | ||
onespringday | 0 | 2,989,813,018 | 100% | ||
abojasim880 | 0 | 336,267,857 | 100% | ||
peterpetrelli | 0 | 522,650,890 | 100% | ||
roportaj | 0 | 524,385,906 | 100% | ||
delegate4upvotes | 0 | 1,464,195,994 | 28% | ||
thesilverdoll | 0 | 524,254,638 | 10% | ||
girlfoundationgh | 0 | 32,556,072,778 | 50% | ||
bos1234 | 0 | 524,033,999 | 100% | ||
hots | 0 | 524,033,999 | 100% | ||
gotmu | 0 | 524,026,089 | 100% | ||
dasa | 0 | 524,026,089 | 100% | ||
nextcol | 0 | 524,026,089 | 100% | ||
sinanbayrak | 0 | 524,042,073 | 100% | ||
opo9 | 0 | 524,025,924 | 100% | ||
princejonnie | 0 | 24,206,069 | 100% | ||
volingy8 | 0 | 310,914,012 | 100% | ||
volingy9 | 0 | 311,101,046 | 100% | ||
ikiliseyir | 0 | 523,938,638 | 100% | ||
indirim | 0 | 535,646,231 | 100% | ||
itiraf | 0 | 535,650,391 | 100% | ||
kuzeyli | 0 | 523,589,826 | 100% | ||
guneyli | 0 | 523,610,040 | 100% | ||
sbtr | 0 | 536,955,063 | 100% | ||
ikiturk | 0 | 535,207,169 | 100% | ||
yazilim | 0 | 535,196,851 | 100% | ||
etkinlik | 0 | 535,195,030 | 100% | ||
steemitli | 0 | 535,192,777 | 100% | ||
discordtr | 0 | 535,186,881 | 100% | ||
tartisma | 0 | 535,184,878 | 100% | ||
beyazli | 0 | 535,178,815 | 100% | ||
kirmizili | 0 | 535,170,584 | 100% | ||
yesilli | 0 | 523,490,233 | 100% | ||
dergi | 0 | 523,500,264 | 100% | ||
dogulu | 0 | 523,492,528 | 100% | ||
batili | 0 | 523,500,595 | 100% | ||
siyahli | 0 | 523,466,030 | 100% | ||
jmgarcia | 0 | 493,271,641 | 100% | ||
petrogib | 0 | 487,044,878 | 100% | ||
flicktaste | 0 | 1,794,905,868 | 50% | ||
ahmadzareen | 0 | 480,345,053 | 100% | ||
kgswallet | 0 | 6,395,219,507 | 100% |
I covered many possibilities to make a hivemind deployment easy.
author | ahmadzareen |
---|---|
permlink | pt8c4a |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-06-17 06:17:00 |
last_update | 2019-06-17 06:17:00 |
depth | 1 |
children | 0 |
last_payout | 2019-06-24 06:17:00 |
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 | 64 |
author_reputation | -45,905,883,468 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,763,027 |
net_rshares | -160,431,241,455 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drakos | 0 | -160,431,241,455 | -5% |
Thanks for making this easier. I tried running Hivemind before but had all sorts of problems with Postgres and permissions.
author | apshamilton |
---|---|
permlink | re-drakos-hivemind-easy-deployment-with-hivemind-docker-20190616t183518176z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steempeak/1.11.1"} |
created | 2019-06-16 18:35:18 |
last_update | 2019-06-16 18:35:18 |
depth | 1 |
children | 6 |
last_payout | 2019-06-23 18:35:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.179 HBD |
curator_payout_value | 0.057 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 123 |
author_reputation | 212,408,658,018,768 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,734,851 |
net_rshares | 411,121,827,028 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
elviento | 0 | 847,596,421 | 0.68% | ||
hamismsf | 0 | 381,836,174,527 | 80% | ||
jpbliberty | 0 | 28,438,056,080 | 50% |
What problems? Installing postgres from scratch is like 2 config edits and 2 sql queries.
author | bronevik |
---|---|
permlink | re-apshamilton-re-drakos-hivemind-easy-deployment-with-hivemind-docker-20190616t190156782z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]} |
created | 2019-06-16 19:01:57 |
last_update | 2019-06-16 19:01:57 |
depth | 2 |
children | 4 |
last_payout | 2019-06-23 19:01:57 |
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 | 90 |
author_reputation | 12,260,156,653,305 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,735,703 |
net_rshares | -50,417,324,741 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mys | 0 | 961,842,599 | 0.5% | ||
mack-bot | 0 | -51,379,167,340 | -0.5% |
I had issues installing it on a Mac. Posted using [Partiko iOS](https://partiko.app/referral/apshamilton)
author | apshamilton |
---|---|
permlink | apshamilton-re-bronevik-re-apshamilton-re-drakos-hivemind-easy-deployment-with-hivemind-docker-20190616t190851343z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"ios"} |
created | 2019-06-16 19:08:51 |
last_update | 2019-06-16 19:08:51 |
depth | 3 |
children | 3 |
last_payout | 2019-06-23 19:08:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.174 HBD |
curator_payout_value | 0.055 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 106 |
author_reputation | 212,408,658,018,768 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,735,934 |
net_rshares | 400,250,124,278 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hamismsf | 0 | 367,850,768,184 | 80% | ||
hdu | 0 | 2,453,063,429 | 2% | ||
jpbliberty | 0 | 27,306,323,234 | 50% | ||
delabo | 0 | 2,639,969,431 | 1% |
Glad this will help.
author | drakos |
---|---|
permlink | pt7fqt |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-06-16 18:37:42 |
last_update | 2019-06-16 18:37:42 |
depth | 2 |
children | 0 |
last_payout | 2019-06-23 18:37:42 |
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 | 20 |
author_reputation | 112,280,226,665,329 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,734,933 |
net_rshares | 0 |
Congratulations @drakos! Your post was mentioned in the [Steem Hit Parade](/hit-parade/@arcange/daily-hit-parade-20190616) in the following category: * Pending payout - Ranked 3 with $ 166,55
author | arcange |
---|---|
permlink | re-hivemind-easy-deployment-with-hivemind-docker-20190616t181006000z |
category | utopian-io |
json_metadata | "" |
created | 2019-06-17 16:10:45 |
last_update | 2019-06-17 16:10:45 |
depth | 1 |
children | 0 |
last_payout | 2019-06-24 16:10:45 |
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 | 193 |
author_reputation | 1,146,621,535,585,811 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,793,751 |
net_rshares | 0 |
Je ne vais pas prΓ©tendre avoir compris le moindre mot π ..mais aprΓ¨s tout, cela n'a pas d'importance que moi je ne comprenne pas π
author | barbara-orenya | ||||||
---|---|---|---|---|---|---|---|
permlink | re-drakos-2019616t231547296z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io","development","docker","hivemind","palnet"],"app":"esteem/2.1.0-surfer","format":"markdown+html","community":"esteem.app"} | ||||||
created | 2019-06-16 21:15:48 | ||||||
last_update | 2019-06-16 21:15:48 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2019-06-23 21:15:48 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.030 HBD | ||||||
curator_payout_value | 0.011 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 130 | ||||||
author_reputation | 357,419,086,795,286 | ||||||
root_title | "Hivemind Easy Deployment With hivemind-docker" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 86,739,779 | ||||||
net_rshares | 79,370,449,295 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pibara | 0 | 36,075,261,946 | 25% | ||
dustsweeper | 0 | 43,295,187,349 | 5.33% |
It's for the nerds lol
author | drakos |
---|---|
permlink | ptct1a |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-06-19 16:12:48 |
last_update | 2019-06-19 16:12:48 |
depth | 2 |
children | 0 |
last_payout | 2019-06-26 16:12:48 |
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 | 22 |
author_reputation | 112,280,226,665,329 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,920,339 |
net_rshares | 0 |
Docker is great but it's still STONGLY advised to configure separate Postgres instance outside Docker for any production environment.
author | bronevik |
---|---|
permlink | re-drakos-hivemind-easy-deployment-with-hivemind-docker-20190616t190401990z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]} |
created | 2019-06-16 19:04:03 |
last_update | 2019-06-16 19:04:03 |
depth | 1 |
children | 0 |
last_payout | 2019-06-23 19:04:03 |
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 | 133 |
author_reputation | 12,260,156,653,305 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,735,772 |
net_rshares | -14,503,508,443 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mys | 0 | 962,029,915 | 0.5% | ||
pibara | 0 | 35,896,310,627 | 25% | ||
mack-bot | 0 | -51,361,848,985 | -0.5% |
Well done, I read up about this a few months ago and people talking about the new possibilities hivemind will bring. It's so exciting to see it finally happening and all the other projects around scot. This place has really started to come together! When I see updates like this it really renews my faith in the project and the community
author | chekohler |
---|---|
permlink | re-drakos-hivemind-easy-deployment-with-hivemind-docker-20190616t182650858z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]} |
created | 2019-06-16 18:26:51 |
last_update | 2019-06-16 18:26:51 |
depth | 1 |
children | 0 |
last_payout | 2019-06-23 18:26:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.145 HBD |
curator_payout_value | 0.048 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 338 |
author_reputation | 524,332,427,393,665 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,734,620 |
net_rshares | 333,434,412,783 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drakos | 0 | 333,434,412,783 | 10% |
I must go look more in this ... this sounds good :)
author | foxkoit |
---|---|
permlink | pt8bje |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-06-17 06:04:27 |
last_update | 2019-06-17 06:04:27 |
depth | 1 |
children | 0 |
last_payout | 2019-06-24 06:04:27 |
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 | 51 |
author_reputation | 536,016,076,494,196 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,762,571 |
net_rshares | 0 |
Have you considered running hivemind as a service, similar to SteemSQL?
author | furion |
---|---|
permlink | pt943k |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-06-17 16:21:21 |
last_update | 2019-06-17 16:21:21 |
depth | 1 |
children | 1 |
last_payout | 2019-06-24 16:21:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.748 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 116,503,940,714,958 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,794,169 |
net_rshares | 1,703,805,335,720 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
furion | 0 | 1,703,805,335,720 | 100% |
I'm considering it, and anyone could, since it's relatively easy to set up (thanks to hivemind-docker) and not very resource hungry. But unlike SteemSQL, hive is limited to the social transactions, like comments, posts, votes.
author | drakos |
---|---|
permlink | pt94rb |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-06-17 16:35:36 |
last_update | 2019-06-17 16:37:09 |
depth | 2 |
children | 0 |
last_payout | 2019-06-24 16:35:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 226 |
author_reputation | 112,280,226,665,329 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,794,899 |
net_rshares | 43,808,948,148 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cuddlekitten | 0 | 4,573,395,033 | 97.51% | ||
dustbunny | 0 | 39,235,553,115 | 12.17% |
Scuttlebutt has it that you oppose EIP. That true? I'm looking for witnesses to vote for who will keep EIP out of HF21.
author | improv |
---|---|
permlink | ptslrq |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-06-28 04:57:27 |
last_update | 2019-06-28 04:57:27 |
depth | 1 |
children | 1 |
last_payout | 2019-07-05 04:57:27 |
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 | 119 |
author_reputation | 228,180,543,885,505 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 87,444,039 |
net_rshares | 0 |
author | drakos |
---|---|
permlink | pttnw5 |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-06-28 18:40:54 |
last_update | 2019-06-28 18:40:54 |
depth | 2 |
children | 0 |
last_payout | 2019-07-05 18:40:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 112,280,226,665,329 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 87,478,138 |
net_rshares | 50,421,561,270 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
googlybot | 0 | 3,663,425,182 | 100% | ||
pricasso | 0 | 664,688,119 | 100% | ||
dustbunny | 0 | 46,093,447,969 | 14.25% |
Oh, man... thanks @drakos. Was just talking about this and how it would be great if this was available!! And boom! There it is. Thanks for putting this together.
author | jasonbu |
---|---|
permlink | ptcosc |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["drakos"],"app":"steemit/0.1"} |
created | 2019-06-19 14:41:00 |
last_update | 2019-06-19 14:41:00 |
depth | 1 |
children | 1 |
last_payout | 2019-06-26 14:41:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 164 |
author_reputation | 26,685,474,279,235 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,916,355 |
net_rshares | 43,514,247,942 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guiltyparties | 0 | 9,666,717,852 | 3.57% | ||
googlybot | 0 | 3,545,984,925 | 96.92% | ||
dustbunny | 0 | 30,301,545,165 | 9.4% |
Your wish became true. Can you wish me to win the lottery? π
author | drakos |
---|---|
permlink | ptct3o |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-06-19 16:14:15 |
last_update | 2019-06-19 16:14:15 |
depth | 2 |
children | 0 |
last_payout | 2019-06-26 16:14:15 |
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 | 60 |
author_reputation | 112,280,226,665,329 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,920,418 |
net_rshares | 0 |
Thank you very much for your contribution! I especially like your quote "An elephant and a whale can be friends" - LOL 1. It might be useful to have a wizard during installation so that we can answer questions and be prepared. 2. Can the risks of exposing Postgre password e.g. $POSTGRES_PASSWORD in the environment variable be mitigated? 3. I supsect that these scripts require sudo permissions anyway, so probably you don't need to manually add sudo before some of the commands. +1 great work for using Docker (containerisation) ! Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/3/1-2-1-1-1-2-1-). ---- Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | justyy |
---|---|
permlink | pt7gr1 |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/1-2-1-1-1-2-1-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-06-16 18:59:27 |
last_update | 2019-06-16 18:59:27 |
depth | 1 |
children | 2 |
last_payout | 2019-06-23 18:59:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 11.142 HBD |
curator_payout_value | 3.536 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 987 |
author_reputation | 280,616,224,641,976 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,735,626 |
net_rshares | 25,418,099,476,007 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
happyukgo | 0 | 496,089,734 | 25% | ||
drakos | 0 | 332,795,754,535 | 10% | ||
codingdefined | 0 | 38,693,539,780 | 25.99% | ||
buckydurddle | 0 | 18,545,093,818 | 33.78% | ||
superbing | 0 | 2,899,644,976 | 25% | ||
dailyfortune | 0 | 34,041,027 | 25% | ||
espoem | 0 | 31,566,259,514 | 15% | ||
dailystats | 0 | 8,436,970,634 | 25% | ||
utopian-io | 0 | 24,669,204,120,909 | 27.28% | ||
jaff8 | 0 | 61,863,353,667 | 25.99% | ||
amosbastian | 0 | 107,906,949,664 | 25.99% | ||
organicgardener | 0 | 4,552,865,468 | 35% | ||
dailychina | 0 | 8,058,018,862 | 25% | ||
reazuliqbal | 0 | 15,322,747,026 | 10% | ||
mightypanda | 0 | 78,909,522,760 | 40% | ||
turtlegraphics | 0 | 2,305,847,247 | 25% | ||
ulockblock | 0 | 25,375,758,109 | 7.27% | ||
fastandcurious | 0 | 417,253,839 | 100% | ||
witnesstools | 0 | 2,217,343,018 | 25% | ||
ilovecoding | 0 | 2,206,155,453 | 25% | ||
curbot | 0 | 2,545,240,479 | 100% | ||
steemfuckeos | 0 | 1,432,886,581 | 25% | ||
linknotfound | 0 | 288,563,422 | 100% | ||
monster-inc | 0 | 1,621,465,932 | 100% | ||
cleanit | 0 | 403,989,553 | 77% |
1. Maybe in a future update. 2. You can `chmod 700 .env` for added security (I'll add that to the readme). I implemented a $POSTGRES_PASSWORD variable to avoid being prompted for the password every time you want to query the database. 3. sudo has a timeout of 15min, so it's good to have it where needed, especially in the entrypoint.sh script, which addresses the postgres permission problems when trying to make it work in docker.
author | drakos |
---|---|
permlink | pt7hsf |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-06-16 19:21:51 |
last_update | 2019-06-16 19:21:51 |
depth | 2 |
children | 0 |
last_payout | 2019-06-23 19:21:51 |
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 | 432 |
author_reputation | 112,280,226,665,329 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,736,279 |
net_rshares | 0 |
Thank you for your review, @justyy! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-pt7gr1-20190618t210533z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-06-18 21:05:36 |
last_update | 2019-06-18 21:05:36 |
depth | 2 |
children | 0 |
last_payout | 2019-06-25 21:05:36 |
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 | 58 |
author_reputation | 152,955,367,999,756 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,871,554 |
net_rshares | 0 |
Good job ;)
author | mahdiyari |
---|---|
permlink | pt7l27 |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-06-16 20:32:33 |
last_update | 2019-06-16 20:32:33 |
depth | 1 |
children | 1 |
last_payout | 2019-06-23 20:32:33 |
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 | 11 |
author_reputation | 199,858,416,089,067 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,738,399 |
net_rshares | 0 |
@mahdiyari Can I ask you something . Are you interested in small steemit project , this will improve your witness position for sure.without any investment , but definitely you will be benefited with this project as it will highlight you in steemit. You can find me on discord adityajainxds#3203. Just listen to the project if you like you can join else no problem.i can explain you here also in the comment. Thanks have a nice day.
author | adityajainxds |
---|---|
permlink | ptlvhb |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mahdiyari"],"app":"steemit/0.1"} |
created | 2019-06-24 13:45:42 |
last_update | 2019-06-24 13:45:42 |
depth | 2 |
children | 0 |
last_payout | 2019-07-01 13:45:42 |
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 | 431 |
author_reputation | 164,406,716,121,482 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 87,211,497 |
net_rshares | 0 |
Thank you for informing the community about the progress on this important project. Peace
author | oadissin | ||||||
---|---|---|---|---|---|---|---|
permlink | re-drakos-2019617t193047875z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io","development","docker","hivemind","palnet"],"app":"esteem/2.0.0-mobile","format":"markdown+html","community":"esteem.app"} | ||||||
created | 2019-06-17 10:30:36 | ||||||
last_update | 2019-06-17 10:30:36 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2019-06-24 10:30:36 | ||||||
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 | 89 | ||||||
author_reputation | 460,170,578,714,338 | ||||||
root_title | "Hivemind Easy Deployment With hivemind-docker" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 86,774,541 | ||||||
net_rshares | 0 |
Hmm, thinking if I upgraded my 2GB QNAP to 4GB, I might be able to run a tiny setup good enough to revive the daily flagwar visualization that I used to run from @pibarabot untill Steemit's rate limiting killed it. What do you think? Could this run on a 4G QNAP? And if it would, does it give access to the weighted per post vote history needed for my specific purpose?
author | pibara |
---|---|
permlink | pt7q3d |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["pibarabot"],"app":"steemit/0.1"} |
created | 2019-06-16 22:21:15 |
last_update | 2019-06-16 22:21:15 |
depth | 1 |
children | 0 |
last_payout | 2019-06-23 22:21:15 |
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 | 369 |
author_reputation | 60,469,629,952,622 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,742,031 |
net_rshares | 0 |
so do we see communities coming to life now??
author | prameshtyagi |
---|---|
permlink | pt96ac |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-06-17 17:08:30 |
last_update | 2019-06-17 17:08:30 |
depth | 1 |
children | 2 |
last_payout | 2019-06-24 17:08:30 |
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 | 45 |
author_reputation | 133,698,299,152,872 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,796,581 |
net_rshares | 0 |
What does "communities" mean in Steem?
author | fuadsm | ||||||
---|---|---|---|---|---|---|---|
permlink | re-prameshtyagi-pt96ac-20190618t041808767z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io"],"app":"steempeak/1.12.2"} | ||||||
created | 2019-06-18 04:18:48 | ||||||
last_update | 2019-06-18 04:18:48 | ||||||
depth | 2 | ||||||
children | 1 | ||||||
last_payout | 2019-06-25 04:18:48 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.117 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 38 | ||||||
author_reputation | 2,991,648,891,055 | ||||||
root_title | "Hivemind Easy Deployment With hivemind-docker" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 86,823,067 | ||||||
net_rshares | 801,888,475,838 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
treeplanter | 0 | 677,217,789,147 | 79.75% | ||
steembasicincome | 0 | 124,670,686,691 | 2.84% |
<center> <h3>You just planted 0.10 tree(s)!</h3> Thanks to @ucukertz <h3>We have planted already 8112.62 trees out of 1,000,000<h3> Let\'s save and restore Abongphen Highland Forest in Cameroonian village Kedjom-Keku! Plant trees with @treeplanter and get paid for it! My Steem Power = 21540.42 Thanks a lot! @martin.mikes coordinator of @kedjom-keku  </center>
author | treeplanter |
---|---|
permlink | re-fuadsm-re-prameshtyagi-pt96ac-20190621t231317545z |
category | utopian-io |
json_metadata | {} |
created | 2019-06-21 23:13:18 |
last_update | 2019-06-21 23:13:18 |
depth | 3 |
children | 0 |
last_payout | 2019-06-28 23:13:18 |
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 | 491 |
author_reputation | 62,929,728,687,402 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 87,068,346 |
net_rshares | 7,531,231,137 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
treeassistant | 0 | 7,531,231,137 | 100% |
#### Hi @drakos! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your post is eligible for our upvote, thanks to our collaboration with @utopian-io! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-hivemind-easy-deployment-with-hivemind-docker-20190616t190111z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.19"}" |
created | 2019-06-16 19:01:12 |
last_update | 2019-06-16 19:01:12 |
depth | 1 |
children | 0 |
last_payout | 2019-06-23 19:01:12 |
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 | 285 |
author_reputation | 23,214,230,978,060 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,735,667 |
net_rshares | 0 |
Great! Thank you for your work!
author | sweettais |
---|---|
permlink | re-drakos-hivemind-easy-deployment-with-hivemind-docker-20190618t040821292z |
category | utopian-io |
json_metadata | {"tags":["utopian-io","palnet"],"app":"palnet/0.1"} |
created | 2019-06-18 04:08:24 |
last_update | 2019-06-18 04:08:24 |
depth | 1 |
children | 0 |
last_payout | 2019-06-25 04:08:24 |
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 | 319,652,806,173,394 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,822,641 |
net_rshares | 0 |
wow, awesome. thanks for doing this!
author | teamhumble |
---|---|
permlink | pt7fj8 |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-06-16 18:33:09 |
last_update | 2019-06-16 18:33:09 |
depth | 1 |
children | 0 |
last_payout | 2019-06-23 18:33:09 |
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 | 36 |
author_reputation | 315,232,864,758,316 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,734,799 |
net_rshares | 539,573,686 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheneats | 0 | 539,573,686 | 7% |
Hey, @drakos! **Thanks for contributing on Utopian**. Weβre already looking forward to your next contribution! **Get higher incentives and support Utopian.io!** Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)). **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-hivemind-easy-deployment-with-hivemind-docker-20190616t193525z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-06-16 19:35:27 |
last_update | 2019-06-16 19:35:27 |
depth | 1 |
children | 0 |
last_payout | 2019-06-23 19:35:27 |
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 | 588 |
author_reputation | 152,955,367,999,756 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,736,690 |
net_rshares | 0 |
Hey Pirata! It's incredible to have you back! ;)
author | yanes94 |
---|---|
permlink | ptaqt4 |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-06-18 13:29:48 |
last_update | 2019-06-18 13:29:48 |
depth | 1 |
children | 0 |
last_payout | 2019-06-25 13:29:48 |
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 | 48 |
author_reputation | 613,600,416,962,826 |
root_title | "Hivemind Easy Deployment With hivemind-docker" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,847,683 |
net_rshares | 0 |