mirror of
https://github.com/lalanza808/xmr.sh.git
synced 2025-06-23 08:54:08 -04:00
zmq params, exec order
This commit is contained in:
parent
1fd10d8cde
commit
7b4495d551
3 changed files with 9 additions and 5 deletions
4
data/monero-lws/.gitignore
vendored
Normal file
4
data/monero-lws/.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
# Ignore everything in this directory
|
||||
*
|
||||
# Except this file
|
||||
!.gitignore
|
|
@ -35,7 +35,7 @@ x-traefik-command-nole: &traefik-command-nole
|
|||
|
||||
x-monerod-command: &monerod-command
|
||||
command: >-
|
||||
--public-node --no-igd --no-zmq
|
||||
--public-node --no-igd
|
||||
--enable-dns-blocklist --rpc-restricted-bind-ip=0.0.0.0
|
||||
--rpc-restricted-bind-port=${MONEROD_RESTRICTED_RPC_PORT} --confirm-external-bind
|
||||
--zmq-pub tcp://0.0.0.0:${MONEROD_ZMQ_PUB_PORT}--zmq-rpc-bind-port=${MONEROD_ZMQ_RPC_PORT} --zmq-rpc-bind-ip=0.0.0.0
|
||||
|
@ -85,7 +85,7 @@ x-monero-lws-service: &monero-lws-service
|
|||
restart: unless-stopped
|
||||
command: >-
|
||||
--rest-server http://0.0.0.0:8000 --daemon=tcp://monerod:${MONEROD_ZMQ_RPC_PORT}
|
||||
--sub=tcp://monerod:${MONEROD_ZMQ_SUB_PORT} --log-level=4
|
||||
--sub=tcp://monerod:${MONEROD_ZMQ_PUB_PORT} --log-level=4
|
||||
--confirm-external-bind
|
||||
volumes:
|
||||
- ./data/monero-lws:/home/monero-lws/.bitmonero/
|
||||
|
|
6
install
6
install
|
@ -340,7 +340,7 @@ configure_grafana() {
|
|||
configure_watchtower() {
|
||||
echo -e "${OkBullet}Configuring watchtower..."
|
||||
while true; do
|
||||
read -r -e -p " Do you want to enable automatic updates using watchtower? [y/n]: " yn
|
||||
read -r -e -p " Do you want to enable automatic node updates using watchtower? [y/n]: " yn
|
||||
case $yn in
|
||||
[Yy]*)
|
||||
sed -i '/#!watchtower/s/# //g' docker-compose.yml
|
||||
|
@ -435,13 +435,13 @@ configure_network
|
|||
configure_tls_domain
|
||||
configure_tls_port
|
||||
configure_pruning
|
||||
configure_lws
|
||||
configure_cors
|
||||
configure_tor
|
||||
configure_lws
|
||||
# Deployment of explorer disabled until it's stable.
|
||||
# configure_explorer
|
||||
configure_watchtower
|
||||
configure_grafana
|
||||
configure_watchtower
|
||||
|
||||
start_xmrsh
|
||||
completed
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue