mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Start monerod as non root user
This commit is contained in:
parent
49afbd0c53
commit
22136256a4
11
Dockerfile
11
Dockerfile
@ -185,8 +185,14 @@ RUN set -ex && \
|
|||||||
rm -rf /var/lib/apt
|
rm -rf /var/lib/apt
|
||||||
COPY --from=builder /src/build/release/bin /usr/local/bin/
|
COPY --from=builder /src/build/release/bin /usr/local/bin/
|
||||||
|
|
||||||
|
# Create monero user
|
||||||
|
RUN adduser --system --group --disabled-password monero && \
|
||||||
|
mkdir -p /wallet /home/monero/.bitmonero && \
|
||||||
|
chown -R monero:monero /home/monero/.bitmonero && \
|
||||||
|
chown -R monero:monero /wallet
|
||||||
|
|
||||||
# Contains the blockchain
|
# Contains the blockchain
|
||||||
VOLUME /root/.bitmonero
|
VOLUME /home/monero/.bitmonero
|
||||||
|
|
||||||
# Generate your wallet via accessing the container and run:
|
# Generate your wallet via accessing the container and run:
|
||||||
# cd /wallet
|
# cd /wallet
|
||||||
@ -196,5 +202,8 @@ VOLUME /wallet
|
|||||||
EXPOSE 18080
|
EXPOSE 18080
|
||||||
EXPOSE 18081
|
EXPOSE 18081
|
||||||
|
|
||||||
|
# switch to user monero
|
||||||
|
USER monero
|
||||||
|
|
||||||
ENTRYPOINT ["monerod", "--p2p-bind-ip=0.0.0.0", "--p2p-bind-port=18080", "--rpc-bind-ip=0.0.0.0", "--rpc-bind-port=18081", "--non-interactive", "--confirm-external-bind"]
|
ENTRYPOINT ["monerod", "--p2p-bind-ip=0.0.0.0", "--p2p-bind-port=18080", "--rpc-bind-ip=0.0.0.0", "--rpc-bind-port=18081", "--non-interactive", "--confirm-external-bind"]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user