diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-09-03 23:06:05 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-09-03 23:06:05 +0200 |
commit | afe3cce7fedf962c01d420151bc86b5e34f88888 (patch) | |
tree | 9a224b58e456ad7f1ed596aafb00bcc069b95974 /Dockerfile | |
parent | Merge pull request #1039 (diff) | |
parent | fix nigglies, as pointed out by moneromooo-monero (diff) | |
download | monero-afe3cce7fedf962c01d420151bc86b5e34f88888.tar.xz |
Merge pull request #1041
011e42f fix nigglies, as pointed out by moneromooo-monero (Riccardo Spagni)
df63e07 fix remaining bitmonero and simplewallet bits (Riccardo Spagni)
04b120f fix blockchain utilities readme (Riccardo Spagni)
f1d4e4a readme fixes, small Docker fix (Riccardo Spagni)
9a525e0 rename systemd bits to monero (Riccardo Spagni)
011c94c change CMake project name (Riccardo Spagni)
50dc4fb update Dockerfile bitmonero refs (Riccardo Spagni)
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Dockerfile b/Dockerfile index 8f6f4294e..158832f4a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ MAINTAINER eiabea <developer@eiabea.com> RUN set -e && \ apt-get update -q && \ apt-get install -q -y --no-install-recommends ca-certificates git && \ - git clone https://github.com/monero-project/bitmonero.git src && \ + git clone https://github.com/monero-project/monero.git src && \ apt-get purge -y git && \ apt-get clean -q -y && \ apt-get autoclean -q -y && \ @@ -23,18 +23,18 @@ RUN set -e && \ apt-get clean -q -y && \ apt-get autoclean -q -y && \ apt-get autoremove -q -y && \ - mkdir /bitmonero && \ - mv /src/build/release/bin/* /bitmonero && \ + mkdir /monero && \ + mv /src/build/release/bin/* /monero && \ rm -rf /src -WORKDIR /bitmonero +WORKDIR /monero # Contains the blockchain VOLUME /root/.bitmonero # Generate your wallet via accessing the container and run: # cd /wallet -# /./bitmonero/simplewallet +# /./bitmonero/monero-wallet-cli VOLUME /wallet ENV LOG_LEVEL 0 @@ -46,4 +46,4 @@ ENV RPC_BIND_PORT 18081 EXPOSE 18080 EXPOSE 18081 -CMD ./bitmonerod --log-level=$LOG_LEVEL --p2p-bind-ip=$P2P_BIND_IP --p2p-bind-port=$P2P_BIND_PORT --rpc-bind-ip=$RPC_BIND_IP --rpc-bind-port=$RPC_BIND_PORT
\ No newline at end of file +CMD ./monerod --log-level=$LOG_LEVEL --p2p-bind-ip=$P2P_BIND_IP --p2p-bind-port=$P2P_BIND_PORT --rpc-bind-ip=$RPC_BIND_IP --rpc-bind-port=$RPC_BIND_PORT
\ No newline at end of file |