mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-20 17:54:38 +00:00
0b8c7ade6e
* create Dockerfile for monero wallet rpc with dockerfiles.sh * make monero wallet rpc docker accessible from outside * connect wallet-rpc with monerod * add generated Dockerfile for monero wallet rpc * add monero wallet rpcs to docker profiles * update getting started guide to refer to wallet rpc docker
10 lines
285 B
Text
10 lines
285 B
Text
# Switch to a non-root user
|
|
# System user (not a human), shell of nologin, no password assigned
|
|
RUN useradd --system --create-home --shell /sbin/nologin monero
|
|
USER monero
|
|
|
|
WORKDIR /home/monero
|
|
COPY --from=monero --chown=monero monero-wallet-rpc /bin
|
|
ADD scripts /scripts
|
|
|
|
EXPOSE 6061
|