当前位置: 首页 > 软件库 > 云计算 > >

docker-monero

授权协议 Readme
开发语言 Java
所属分类 云计算
软件类型 开源软件
地区 不详
投 递 者 鲁华茂
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

docker-monero

Built from source monero Docker images based on Alpine Linux

Pulling

docker pull cornfeedhobo/monero

Running the Daemon

docker run -dit --name monero \
  -v $HOME/.bitmonero:/root/.bitmonero \
  -p 18080:18080 -p 18081:18081 \
  --memory=1g --memory-swap=1g \
  cornfeedhobo/monero

Checking the container status

docker logs monero
curl -X POST http://localhost:18081/json_rpc \
  -d '{"jsonrpc":"2.0","id":"test","method":"get_info"}' \
  -H "Content-Type: application/json" \
  -H "Accept:application/json"

Using the wallet

Docker exec

docker exec -it monero monero-wallet-cli --wallet-file=wallet

Isolated container

docker run --rm -it --link monero \
  -v $HOME/.bitmonero:/root/.bitmonero \
  cornfeedhobo/monero monero-wallet-cli \
    --wallet-file=wallet \
    --daemon-address="$MONERO_PORT_18081_TCP_ADDR:$MONERO_PORT_18081_TCP_PORT"

Running Just the Wallet

docker run --rm -it \
  -v $HOME/.bitmonero:/root/.bitmonero \
  cornfeedhobo/monero monero-wallet-cli \
    --wallet-file=wallet

Is it any good?

Yes

 相关资料
  • docker-monerod Description Run a Monero full node. The blockchain is loaded from the /bitmonero volume. This volume should contain a config file like the included bitmonero.conf. How to run # Clone re

  • Monero Miner on Docker Alpine Image of latest XMRig version, built on Alpine. Run For easy start, with default configuration. docker run -d --restart=always giansalex/monero-miner Use your own configu

  • simple-monerod-docker A simple and straightforward Dockerized monerod built from source and exposing standard ports. Actions Docker Docker Hub This repo is used to build the images available at: https

  • Unofficial Monero wallet GUI and daemon for docker Unofficial monero wallet GUI docker image to be run standalone or inside a browser window using Xpra. Having the wallet available as docker container

  • ez-docker-monero Easy way to set up your own full Monero (XMR) node. Includes Docker configuration and a wrapper script to interact with the wallet. No need to install any extra build tools into your

  • 一、解决的问题 二、与虚拟机的比较 三、优势 四、使用场景 五、镜像与容器 参考资料 一、解决的问题 由于不同的机器有不同的操作系统,以及不同的库和组件,在将一个应用部署到多台机器上需要进行大量的环境配置操作。 Docker 主要解决环境配置问题,它是一种虚拟化技术,对进程进行隔离,被隔离的进程独立于宿主操作系统和其它隔离的进程。使用 Docker 可以不修改应用程序代码,不需要开发人员学习特定环