-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Setup universal Docker build environment for steemd and basic turbine…
… commands for running and maintaining a node.
- Loading branch information
bennierex
committed
Mar 20, 2020
1 parent
1cd7987
commit 1bd7375
Showing
9 changed files
with
1,418 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/build/bin | ||
/build/src | ||
_res |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
Oops, something went wrong.