Use v5 docker images in deployment

This commit is contained in:
Theo 2023-07-24 07:36:17 -07:00
parent 2246d6acd5
commit f3041b59b9

@ -47,7 +47,7 @@ services:
eth-server: eth-server:
build: . build: .
image: tornadocash/relayer:mainnet-v4 image: tornadocash/relayer:mainnet-v5
profiles: ["eth"] profiles: ["eth"]
restart: always restart: always
command: server command: server
@ -59,7 +59,7 @@ services:
depends_on: [redis] depends_on: [redis]
eth-treeWatcher: eth-treeWatcher:
image: tornadocash/relayer:mainnet-v4 image: tornadocash/relayer:mainnet-v5
profiles: ["eth"] profiles: ["eth"]
restart: always restart: always
command: treeWatcher command: treeWatcher
@ -70,7 +70,7 @@ services:
depends_on: [redis, eth-server] depends_on: [redis, eth-server]
eth-priceWatcher: eth-priceWatcher:
image: tornadocash/relayer:mainnet-v4 image: tornadocash/relayer:mainnet-v5
profiles: ["eth"] profiles: ["eth"]
restart: always restart: always
command: priceWatcher command: priceWatcher
@ -81,7 +81,7 @@ services:
depends_on: [redis, eth-server] depends_on: [redis, eth-server]
eth-healthWatcher: eth-healthWatcher:
image: tornadocash/relayer:mainnet-v4 image: tornadocash/relayer:mainnet-v5
profiles: ["eth"] profiles: ["eth"]
restart: always restart: always
command: healthWatcher command: healthWatcher
@ -92,7 +92,7 @@ services:
depends_on: [redis, eth-server] depends_on: [redis, eth-server]
eth-worker1: eth-worker1:
image: tornadocash/relayer:mainnet-v4 image: tornadocash/relayer:mainnet-v5
profiles: ["eth"] profiles: ["eth"]
restart: always restart: always
command: worker command: worker
@ -105,7 +105,7 @@ services:
# # This is additional worker for ethereum mainnet # # This is additional worker for ethereum mainnet
# # So you can process transactions from multiple addresses, but before it you need to set up those addresses as workers # # So you can process transactions from multiple addresses, but before it you need to set up those addresses as workers
# eth-worker2: # eth-worker2:
# image: tornadorelayer:mainnet # image: tornadocash/relayer:mainnet-v5
# profiles: [ 'eth' ] # profiles: [ 'eth' ]
# restart: always # restart: always
# command: worker # command: worker
@ -166,7 +166,7 @@ services:
# ---------------------- BSC (Binance Smart Chain) ----------------------- # # ---------------------- BSC (Binance Smart Chain) ----------------------- #
bsc-server: bsc-server:
image: tornadocash/relayer:sidechain-beta image: tornadocash/relayer:sidechain-v5
profiles: ["bsc"] profiles: ["bsc"]
restart: always restart: always
command: server command: server
@ -178,7 +178,7 @@ services:
depends_on: [redis] depends_on: [redis]
bsc-healthWatcher: bsc-healthWatcher:
image: tornadocash/relayer:sidechain-beta image: tornadocash/relayer:sidechain-v5
profiles: ["bsc"] profiles: ["bsc"]
restart: always restart: always
command: healthWatcher command: healthWatcher
@ -189,7 +189,7 @@ services:
depends_on: [redis, bsc-server] depends_on: [redis, bsc-server]
bsc-worker1: bsc-worker1:
image: tornadocash/relayer:sidechain-beta image: tornadocash/relayer:sidechain-v5
profiles: ["bsc"] profiles: ["bsc"]
restart: always restart: always
command: worker command: worker
@ -204,7 +204,7 @@ services:
# ---------------------- Polygon (MATIC) --------------------- # # ---------------------- Polygon (MATIC) --------------------- #
polygon-server: polygon-server:
image: tornadocash/relayer:sidechain-beta image: tornadocash/relayer:sidechain-v5
profiles: ["polygon"] profiles: ["polygon"]
restart: always restart: always
command: server command: server
@ -216,7 +216,7 @@ services:
depends_on: [redis] depends_on: [redis]
polygon-healthWatcher: polygon-healthWatcher:
image: tornadocash/relayer:sidechain-beta image: tornadocash/relayer:sidechain-v5
profiles: ["polygon"] profiles: ["polygon"]
restart: always restart: always
command: healthWatcher command: healthWatcher
@ -227,7 +227,7 @@ services:
depends_on: [redis, polygon-server] depends_on: [redis, polygon-server]
polygon-worker1: polygon-worker1:
image: tornadocash/relayer:sidechain-beta image: tornadocash/relayer:sidechain-v5
profiles: ["polygon"] profiles: ["polygon"]
restart: always restart: always
command: worker command: worker
@ -242,7 +242,7 @@ services:
# ---------------------- Gnosis (XDAI) ---------------------- # # ---------------------- Gnosis (XDAI) ---------------------- #
gnosis-server: gnosis-server:
image: tornadocash/relayer:sidechain-beta image: tornadocash/relayer:sidechain-v5
profiles: ["gnosis"] profiles: ["gnosis"]
restart: always restart: always
command: server command: server
@ -254,7 +254,7 @@ services:
depends_on: [redis] depends_on: [redis]
gnosis-healthWatcher: gnosis-healthWatcher:
image: tornadocash/relayer:sidechain-beta image: tornadocash/relayer:sidechain-v5
profiles: ["gnosis"] profiles: ["gnosis"]
restart: always restart: always
command: healthWatcher command: healthWatcher
@ -265,7 +265,7 @@ services:
depends_on: [redis, gnosis-server] depends_on: [redis, gnosis-server]
gnosis-worker1: gnosis-worker1:
image: tornadocash/relayer:sidechain-beta image: tornadocash/relayer:sidechain-v5
profiles: ["gnosis"] profiles: ["gnosis"]
restart: always restart: always
command: worker command: worker
@ -280,7 +280,7 @@ services:
# ---------------------- AVAX ---------------------- # # ---------------------- AVAX ---------------------- #
avax-server: avax-server:
image: tornadocash/relayer:sidechain-beta image: tornadocash/relayer:sidechain-v5
profiles: ["avax"] profiles: ["avax"]
restart: always restart: always
command: server command: server
@ -292,7 +292,7 @@ services:
depends_on: [redis] depends_on: [redis]
avax-healthWatcher: avax-healthWatcher:
image: tornadocash/relayer:sidechain-beta image: tornadocash/relayer:sidechain-v5
profiles: ["avax"] profiles: ["avax"]
restart: always restart: always
command: healthWatcher command: healthWatcher
@ -303,7 +303,7 @@ services:
depends_on: [redis, avax-server] depends_on: [redis, avax-server]
avax-worker1: avax-worker1:
image: tornadocash/relayer:sidechain-beta image: tornadocash/relayer:sidechain-v5
profiles: ["avax"] profiles: ["avax"]
restart: always restart: always
command: worker command: worker
@ -318,7 +318,7 @@ services:
# ---------------------- OP ------------------------ # # ---------------------- OP ------------------------ #
op-server: op-server:
image: tornadocash/relayer:sidechain-beta image: tornadocash/relayer:sidechain-v5
profiles: ["op"] profiles: ["op"]
restart: always restart: always
command: server command: server
@ -330,7 +330,7 @@ services:
depends_on: [redis] depends_on: [redis]
op-healthWatcher: op-healthWatcher:
image: tornadocash/relayer:sidechain-beta image: tornadocash/relayer:sidechain-v5
profiles: ["op"] profiles: ["op"]
restart: always restart: always
command: healthWatcher command: healthWatcher
@ -341,7 +341,7 @@ services:
depends_on: [redis, op-server] depends_on: [redis, op-server]
op-worker1: op-worker1:
image: tornadocash/relayer:sidechain-beta image: tornadocash/relayer:sidechain-v5
profiles: ["op"] profiles: ["op"]
restart: always restart: always
command: worker command: worker
@ -356,7 +356,7 @@ services:
# ---------------------- Arbitrum ----------------------- # # ---------------------- Arbitrum ----------------------- #
arb-server: arb-server:
image: tornadocash/relayer:sidechain-beta image: tornadocash/relayer:sidechain-v5
profiles: ["arb"] profiles: ["arb"]
restart: always restart: always
command: server command: server
@ -368,7 +368,7 @@ services:
depends_on: [redis] depends_on: [redis]
arb-healthWatcher: arb-healthWatcher:
image: tornadocash/relayer:sidechain-beta image: tornadocash/relayer:sidechain-v5
profiles: ["arb"] profiles: ["arb"]
restart: always restart: always
command: healthWatcher command: healthWatcher
@ -379,7 +379,7 @@ services:
depends_on: [redis, arb-server] depends_on: [redis, arb-server]
arb-worker1: arb-worker1:
image: tornadocash/relayer:sidechain-beta image: tornadocash/relayer:sidechain-v5
profiles: ["arb"] profiles: ["arb"]
restart: always restart: always
command: worker command: worker
@ -394,7 +394,7 @@ services:
# ---------------------- Goerli (Ethereum Testnet) ---------------------- # # ---------------------- Goerli (Ethereum Testnet) ---------------------- #
goerli-server: goerli-server:
image: tornadorelayer:mainnet image: tornadocash/relayer:mainnet-v5
profiles: ["geth"] profiles: ["geth"]
restart: always restart: always
command: server command: server
@ -406,7 +406,7 @@ services:
depends_on: [redis] depends_on: [redis]
goerli-treeWatcher: goerli-treeWatcher:
image: tornadorelayer:mainnet image: tornadocash/relayer:mainnet-v5
profiles: ["goerli"] profiles: ["goerli"]
restart: always restart: always
command: treeWatcher command: treeWatcher
@ -417,7 +417,7 @@ services:
depends_on: [redis, goerli-server] depends_on: [redis, goerli-server]
goerli-priceWatcher: goerli-priceWatcher:
image: tornadorelayer:mainnet image: tornadocash/relayer:mainnet-v5
profiles: ["goerli"] profiles: ["goerli"]
restart: always restart: always
command: priceWatcher command: priceWatcher
@ -428,7 +428,7 @@ services:
depends_on: [redis, goerli-server] depends_on: [redis, goerli-server]
goerli-healthWatcher: goerli-healthWatcher:
image: tornadorelayer:mainnet image: tornadocash/relayer:mainnet-v5
profiles: ["goerli"] profiles: ["goerli"]
restart: always restart: always
command: healthWatcher command: healthWatcher
@ -439,7 +439,7 @@ services:
depends_on: [redis, goerli-server] depends_on: [redis, goerli-server]
goerli-worker1: goerli-worker1:
image: tornadorelayer:mainnet image: tornadocash/relayer:mainnet-v5
profiles: ["goerli"] profiles: ["goerli"]
restart: always restart: always
command: worker command: worker