Skip to content

Commit

Permalink
Setup universal Docker build environment for steemd and basic turbine…
Browse files Browse the repository at this point in the history
… commands for running and maintaining a node.
  • Loading branch information
bennierex committed Mar 20, 2020
1 parent 1cd7987 commit 1bd7375
Show file tree
Hide file tree
Showing 9 changed files with 1,418 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/build/bin
/build/src
_res
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM ubuntu:18.04

EXPOSE 2001
EXPOSE 8090

WORKDIR /steem

COPY ./build/bin/programs/steemd/steemd ./bin/

ENTRYPOINT ["./steemd", "--data-dir=/steem/data"]
Loading

0 comments on commit 1bd7375

Please sign in to comment.