28 lines
675 B
YAML
28 lines
675 B
YAML
services:
|
|
monerod:
|
|
image: sethsimmons/simple-monerod:latest
|
|
restart: unless-stopped
|
|
container_name: monerod
|
|
volumes:
|
|
- bitmonero:/home/monero/.bitmonero:rw
|
|
ports:
|
|
- 18080:18080
|
|
- 18089:18089
|
|
- 18083:18083
|
|
command:
|
|
- "--add-priority-node=p2pmd.xmrvsbeast.com:18080"
|
|
- "--out-peers=32"
|
|
- "--in-peers=64"
|
|
- "--disable-dns-checkpoints"
|
|
- "--rpc-restricted-bind-ip=0.0.0.0"
|
|
- "--rpc-restricted-bind-port=18089"
|
|
- "--no-igd"
|
|
- "--enable-dns-blocklist"
|
|
- "--prune-blockchain"
|
|
- "--zmq-pub=tcp://0.0.0.0:18083"
|
|
|
|
volumes:
|
|
bitmonero:
|
|
name: bitmonero
|
|
external: true
|