diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-09-03 21:33:47 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-09-03 21:33:47 +0200 |
commit | 50dc4fbd265b7eeeef596a03680c60cacdf136ea (patch) | |
tree | 6e0c6b7aa4ab4b5926a40da4b19603359657435c /Dockerfile | |
parent | Merge pull request #1039 (diff) | |
download | monero-50dc4fbd265b7eeeef596a03680c60cacdf136ea.tar.xz |
update Dockerfile bitmonero refs
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Dockerfile b/Dockerfile index 8f6f4294e..477c4942a 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,11 +23,11 @@ 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 @@ -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 |