create account

The super easy guide to running Steemit.com on your own machine! (Using Docker) by neoxian

View this thread on: hive.blogpeakd.comecency.com
· @neoxian · (edited)
$39.92
The super easy guide to running Steemit.com on your own machine! (Using Docker)
Update:  I have a github now, see https://steemit.com/steemit/@neoxian/running-steemit-locally-update

Hey Steemit!   Do you want to post and use the steemit blockchain, but you don't want to browse to steemit.com ?  Well with this guide, you'll be able to run steemit.com on your own machine and interact with the Steem blockchain that way.

And it's pretty easy!  The only thing you need to know is how to run Docker.

# Step 1: Get Docker

I wrote a guide here on Docker:
https://steemit.com/programming/@neoxian/neoxian-s-guide-to-docker

# Step 2: Save this docker file:

```
#Version: 0.1.0

FROM ubuntu:16.04
LABEL maintainer "Neoxian"

RUN apt-get update

# some tools I like

RUN apt-get -y install vim
RUN apt-get -y install curl
RUN apt-get -y install git 

# grab steemit.com

WORKDIR "/root"

RUN git clone https://github.com/steemit/steemit.com
 

EXPOSE 3001 3002 3301 3306

WORKDIR "/root/steemit.com"

RUN mkdir tmp

RUN apt-get -y install nodejs
RUN apt-get -y install npm
RUN apt-get -y install build-essential libssl-dev

WORKDIR "/root"

RUN curl -sL https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh -o install_nvm.sh

RUN bash install_nvm.sh

# Replace shell with bash so we can source files
RUN rm /bin/sh && ln -s /bin/bash /bin/sh

WORKDIR "/root/steemit.com"

RUN source /root/.nvm/nvm.sh \
    && nvm install v6 \
    && npm install \
    && npm install -g babel-cli


WORKDIR "/root/steemit.com/config"

RUN cp steem-example.json steem-dev.json
RUN debconf-set-selections <<< 'mysql-server mysql-server/root_password password bob'
RUN debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password bob'
RUN apt-get -y install mysql-server

RUN service mysql start; mysql -u root --password=bob -e "create database steemit_dev;DROP USER 'root'@'localhost';CREATE USER 'root'@'%' IDENTIFIED BY '';GRANT ALL PRIVILEGES ON *.* TO 'root'@'%';FLUSH PRIVILEGES;"

RUN npm install -g sequelize sequelize-cli pm2 mysql

WORKDIR "/root/steemit.com/db"

RUN source /root/.nvm/nvm.sh \
    && service mysql start \
    && sequelize db:migrate 

WORKDIR "/root/steemit.com/config"

RUN source /root/.nvm/nvm.sh \
    && node -p "crypto.randomBytes(32).toString('base64')" > key.txt

RUN sed -ie "s#somelongsecretstring#$(cat key.txt)#g" steem-dev.json

```

Use this to create "Dockerfile" and place it in a new directory.

# Step 3: Build an image using the dockerfile

Go to the directory you put the dockerfile in and run this:
```
docker build -t="neoxian/steemweb" .
```
It will take around 5-10 minutes to build the image...

# Step 4

Run your new image!
```
docker run --name steemweb -it -p 3001:3001 -p 3002:3002 -p 3306:3306 neoxian/steemweb /bin/bash
```

# Step 5
Start up your own personal steemit.com webserver! (Takes a few minutes to start up)
```
cd /root/steemit.com
npm start
```
# Step 6
Browse to ```localhost:3002 ```

That's it!  You're in.  You can sign in normally and do everything normally.  
The only thing that doesn't seem to work are user icons.

https://i.imgsafe.org/32f70ef46c.png
https://i.imgsafe.org/3301150a09.png


# Why would you want to do this?

* Could be more secure to use your own website
* Don't like the interface, you can change it!
* Don't like censorship?  You can make your own version that shows everything, no matter what!
* Like porn?  You can make a version that shows you nothing but the non-work safe posts!

Oh the possibilities...
https://i.imgsafe.org/330c213d22.jpg






```
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 153 others
👎  
properties (23)
authorneoxian
permlinkthe-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker
categorysteemit
json_metadata{"tags":["steemit","guide","docker"],"image":["https://i.imgsafe.org/32f70ef46c.png","https://i.imgsafe.org/3301150a09.png","https://i.imgsafe.org/330c213d22.jpg"],"links":["https://steemit.com/steemit/@neoxian/running-steemit-locally-update","https://steemit.com/programming/@neoxian/neoxian-s-guide-to-docker"],"app":"steemit/0.1","format":"markdown"}
created2017-02-14 16:33:24
last_update2017-02-17 02:41:45
depth0
children32
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value32.989 HBD
curator_payout_value6.932 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3,492
author_reputation167,518,222,673,938
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,506,591
net_rshares76,917,254,627,144
author_curate_reward""
vote details (218)
@abit ·
$7.87
>```
>RUN source /root/.nvm/nvm.sh \
>    && node -p "crypto.randomBytes(32).toString('base64')" > key.txt
>
>#RUN sed -ie "s/somelongsecretstring/$(cat key.txt)/g" steem-dev.json
>
>## Warning, big hack, if you can figure out how to get that sed command above to work
># let me know
>RUN sed -ie 's/somelongsecretstring/KrddWYj8wPonvIpjfNvNyJiw8RfVyOfvEaeXcWeOMHI=/g' steem-dev.json
>```

I guess the tricky part is that `/` is a valid character in a base64 string, so if there is a `/` is in key.txt,  the `sed` command sometimes won't work. Try this:
```
RUN sed -ie "s#somelongsecretstring#$(cat key.txt)#g" steem-dev.json
```
👍  , , , , ,
properties (23)
authorabit
permlinkre-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170215t215856881z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-02-15 21:59:27
last_update2017-02-15 21:59:27
depth1
children2
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value5.904 HBD
curator_payout_value1.967 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length630
author_reputation141,171,499,037,785
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,517,280
net_rshares33,090,026,529,727
author_curate_reward""
vote details (6)
@neoxian ·
Thanks! I'll try it.
properties (22)
authorneoxian
permlinkre-abit-re-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170215t223853567z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-02-15 22:38:54
last_update2017-02-15 22:38:54
depth2
children0
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation167,518,222,673,938
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,517,585
net_rshares0
@neoxian ·
$7.53
It worked brilliantly.
👍  , , ,
properties (23)
authorneoxian
permlinkre-abit-re-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170215t231604364z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-02-15 23:16:03
last_update2017-02-15 23:16:03
depth2
children0
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value5.645 HBD
curator_payout_value1.881 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation167,518,222,673,938
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,517,854
net_rshares32,314,261,783,707
author_curate_reward""
vote details (4)
@ervin-lemark ·
This is fantastic.

Now to find some time to try it out ... :)
👍  
properties (23)
authorervin-lemark
permlinkre-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170215t230406769z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-02-15 23:04:24
last_update2017-02-15 23:04:24
depth1
children0
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation474,535,448,895,354
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,517,765
net_rshares618,100,096,291
author_curate_reward""
vote details (1)
@iloveupvotes ·
you done flagging my shit too, or do you want some of this too bro. Because i've had enough ok. If your cool, cool. But there is going to be no more bullshit from anyone without backlashes in massive degree. I will not hold back anymore on anything. So do we got us a problem, or do we have us a truce. I leave your shit alone, you leave mine the fuck alone.
👎  ,
properties (23)
authoriloveupvotes
permlinkre-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170214t172437597z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-02-14 17:24:33
last_update2017-02-14 17:24:33
depth1
children11
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length358
author_reputation-5,859,744,228,034
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,506,929
net_rshares-25,683,495,612
author_curate_reward""
vote details (2)
@neoxian ·
$6.71
Hi, there is no need for me to flag you any more, seeing that you have an extremely low reputation now.  If you read my post above, you will see that it is possible to run an un-censored version of steemit locally on your own machine.
👍  , ,
properties (23)
authorneoxian
permlinkre-iloveupvotes-re-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170214t172802241z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-02-14 17:28:03
last_update2017-02-14 17:28:03
depth2
children10
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value5.293 HBD
curator_payout_value1.414 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length234
author_reputation167,518,222,673,938
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,506,954
net_rshares30,401,463,210,278
author_curate_reward""
vote details (3)
@iloveupvotes ·
i saw, i like your posts and work. I dont like how you stalked my list and above all i dont like how you made a call to make it harder for new users to grow. A better decision could have been made neoxian. I abused it only to have a voice after attacked. I don't see a rash pattern, nor was it something I enjoyed. Maybe look more into that man and make the right choice. Change weight limits per insert type man, but newcomers not having @ mentions to grow is wrong. Help me fix that please.
👎  ,
properties (23)
authoriloveupvotes
permlinkre-neoxian-re-iloveupvotes-re-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170214t173155796z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-02-14 17:31:51
last_update2017-02-14 17:31:51
depth3
children3
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length492
author_reputation-5,859,744,228,034
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,506,974
net_rshares-25,683,495,612
author_curate_reward""
vote details (2)
@iloveupvotes ·
This was never about accounts neoxian. To any paying attention until now. I could have made 100 by now and done way more damage. It's about learning. It's also about moral points. And again, I could have left them and faded away into a new. This was a choice made and is made. You see flaws in the system, you change them. But do not change them in a manner where others can't grow. Remember this is a chain man. I know no one makes promises lately. But if you get that changed, I'll leave these accounts and this mess behind and won't speak of it. But make that fair decision for the people. DOn't take @ mentions away from them. Just make it so that they can only insert like 10 per post. Give them a chance before no chance leads to zero.
👎  ,
properties (23)
authoriloveupvotes
permlinkre-neoxian-re-iloveupvotes-re-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170214t173819201z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-02-14 17:38:15
last_update2017-02-14 17:38:15
depth3
children5
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length741
author_reputation-5,859,744,228,034
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,507,008
net_rshares-25,683,495,612
author_curate_reward""
vote details (2)
@jamesc ·
You might not need *nvm* to install node 6..  Have a look around, it is working under this setup:

https://github.com/steemit/imagehoster/blob/a8bba5463a1c55a25f7be10f64d90835a8ec02cb/imagehoster/Dockerfile#L1
👍  
properties (23)
authorjamesc
permlinkre-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170216t145709134z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://github.com/steemit/imagehoster/blob/a8bba5463a1c55a25f7be10f64d90835a8ec02cb/imagehoster/Dockerfile#L1"],"app":"steemit/0.1"}
created2017-02-16 14:57:09
last_update2017-02-16 14:57:09
depth1
children1
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation11,900,157,451,513
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,522,837
net_rshares631,341,871,232
author_curate_reward""
vote details (1)
@neoxian ·
Cool thanks for the pointer.
properties (22)
authorneoxian
permlinkre-jamesc-re-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170216t160421985z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-02-16 16:04:21
last_update2017-02-16 16:04:21
depth2
children0
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation167,518,222,673,938
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,523,322
net_rshares0
@klye ·
How does this post have such a low payout.. ? This is GREAT info!

Thanks for this
👍  
properties (23)
authorklye
permlinkre-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170215t042200877z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-02-15 04:20:36
last_update2017-02-15 04:20:36
depth1
children3
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation412,497,045,044,386
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,510,906
net_rshares604,869,603,170
author_curate_reward""
vote details (1)
@neoxian ·
$7.02
Heh, thanks, I did work hard on this one.  And i've posted songs that have made 7 dollars, that's Steemit for ya!
👍  , ,
properties (23)
authorneoxian
permlinkre-klye-re-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170215t054906483z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-02-15 05:49:06
last_update2017-02-15 05:49:06
depth2
children1
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value5.526 HBD
curator_payout_value1.496 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length113
author_reputation167,518,222,673,938
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,511,221
net_rshares31,148,279,686,770
author_curate_reward""
vote details (3)
@klye ·
I can tell you put effort into this. Doing tutorial / walkthrough type posts can take a damn long time.

Bookmarked this and followed you.. Which I should have done a while ago. Cheer man.
properties (22)
authorklye
permlinkre-neoxian-re-klye-re-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170215t063243783z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-02-15 06:31:18
last_update2017-02-15 06:31:18
depth3
children0
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length188
author_reputation412,497,045,044,386
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,511,359
net_rshares0
@personz ·
Yea it a shame, this is fantastic, I was just going to see how to get Steemit.com working locally very soon to try out some tweaks, you've saved me a lot of time @neoxian ! 😆  👍   💯
👍  
properties (23)
authorpersonz
permlinkre-klye-re-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170215t103041909z
categorysteemit
json_metadata{"tags":["steemit"],"users":["neoxian"],"app":"steemit/0.1"}
created2017-02-15 10:30:42
last_update2017-02-15 10:30:42
depth2
children0
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length181
author_reputation42,452,361,038,560
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,512,397
net_rshares644,321,612,333
author_curate_reward""
vote details (1)
@sneak · (edited)
There is already a `Dockerfile` in the master branch of https://github.com/steemit/steemit.com - in fact, steemit.com is running off of it right now. :)

Your best bet is to use that one, overriding the config anywhere you diverge from ours.  The defaults baked in should be good for most use cases, and tons is configurable via environment variables.

PS: It's on :8080 (main) and :8081 (webpack) now for compatibility with Google Cloud Shell development.
👍  
properties (23)
authorsneak
permlinkre-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170217t032437061z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://github.com/steemit/steemit.com"],"app":"steemit/0.1"}
created2017-02-17 03:24:15
last_update2017-02-17 03:32:42
depth1
children1
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length456
author_reputation28,694,344,106,492
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,527,548
net_rshares606,307,004,633
author_curate_reward""
vote details (1)
@neoxian ·
Thanks!  Yes I did spot that.  I'll definitely try to make use of that one.
properties (22)
authorneoxian
permlinkre-sneak-re-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170217t033442949z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-02-17 03:34:42
last_update2017-02-17 03:34:42
depth2
children0
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation167,518,222,673,938
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,527,598
net_rshares0
@sneak ·
$0.57
You don't need to build it yourself... we provide official docker images for all branches:

https://hub.docker.com/r/steemit/steemit.com/
👍  , ,
properties (23)
authorsneak
permlinkre-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170217t032953697z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://hub.docker.com/r/steemit/steemit.com/"],"app":"steemit/0.1"}
created2017-02-17 03:29:30
last_update2017-02-17 03:29:30
depth1
children0
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.572 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length137
author_reputation28,694,344,106,492
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,527,570
net_rshares1,345,369,010,348
author_curate_reward""
vote details (3)
@surpassinggoogle ·
how about hosting one's on website on the steem blockchain, how does that work?
👍  
properties (23)
authorsurpassinggoogle
permlinkre-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170216t150352020z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-02-16 15:03:51
last_update2017-02-16 15:03:51
depth1
children1
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation527,661,560,108,742
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,522,888
net_rshares631,341,871,232
author_curate_reward""
vote details (1)
@neoxian ·
Hmm, I'm not too sure how that would work.
properties (22)
authorneoxian
permlinkre-surpassinggoogle-re-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170216t153554765z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-02-16 15:35:54
last_update2017-02-16 15:35:54
depth2
children0
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation167,518,222,673,938
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,523,115
net_rshares0
@tradeqwik ·
This is awesome!  Any idea what it would take to get this running for a proper steem wallet so we could create POW accounts?
👍  
properties (23)
authortradeqwik
permlinkre-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170216t234955797z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-02-16 23:49:57
last_update2017-02-16 23:49:57
depth1
children0
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length124
author_reputation11,238,114,179,948
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,526,301
net_rshares619,483,410,873
author_curate_reward""
vote details (1)
@vato ·
$0.02
Can you build containers for bitshares and windows too?
👍  ,
👎  
properties (23)
authorvato
permlinkre-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170216t143045611z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-02-16 14:30:48
last_update2017-02-16 14:30:48
depth1
children3
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation3,378,892,006,080
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,522,660
net_rshares786,619,483,046
author_curate_reward""
vote details (3)
@neoxian ·
$6.19
There is a version of docker for windows, so you could run the above container in windows.  A container could be made for bitshares.  Can you run windows inside of a container?  That I'm not sure about.
👍  , , ,
properties (23)
authorneoxian
permlinkre-vato-re-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170216t143441919z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-02-16 14:34:42
last_update2017-02-16 14:34:42
depth2
children2
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value4.646 HBD
curator_payout_value1.548 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length202
author_reputation167,518,222,673,938
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,522,684
net_rshares29,143,224,209,462
author_curate_reward""
vote details (4)
@vato ·
I know docker is running under windows.
But as far as I know a linux docker container cannot be run in a windows docker.
and no you cannot run the whole windows OS in a container.
so basically my question is if you could provide windows docker containers for BitShares and Steemit too?
👎  
properties (23)
authorvato
permlinkre-neoxian-re-vato-re-neoxian-the-super-easy-guide-to-running-steemit-com-on-your-own-machine-using-docker-20170216t145719762z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-02-16 14:57:21
last_update2017-02-16 14:57:21
depth3
children1
last_payout2017-03-19 05:10:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length285
author_reputation3,378,892,006,080
root_title"The super easy guide to running Steemit.com on your own machine! (Using Docker)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,522,839
net_rshares0
author_curate_reward""
vote details (1)