refactor valkey into objects with health check
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# tail -f Fund_Rate_Aster_FR_ALL.log Fund_Rate_Extended_FR_ALL.log Fund_Rate_Engine_BFR.log Fund_Rate_Algo_Orchestrator.log Fund_Rate_Algo.log Fund_Rate_Aster_User.log Fund_Rate_Aster.log Fund_Rate_Extended_FR.log Fund_Rate_Extended_OB.log Fund_Rate_Extended_User.log
|
||||
# tail -f Fund_Rate_Algo.log Fund_Rate_Engine_BFR.log Fund_Rate_Algo_Orchestrator.log Fund_Rate_Aster_User.log Fund_Rate_Aster.log Fund_Rate_Extended_FR.log Fund_Rate_Extended_OB.log Fund_Rate_Extended_User.log
|
||||
|
||||
services:
|
||||
# algo:
|
||||
@@ -9,126 +9,106 @@ services:
|
||||
# dockerfile: ./algo/Dockerfile
|
||||
# depends_on:
|
||||
# - algo_orchestrator
|
||||
# - engine_best_funding_rate
|
||||
# - ws_aster
|
||||
# - ws_aster_user
|
||||
# - ws_extended_fund_rate
|
||||
# - ws_extended_orderbook
|
||||
# - ws_extended_trades
|
||||
# - ws_extended_user
|
||||
# volumes:
|
||||
# - /home/ubuntu/data:/home/ubuntu/data:rw # Read-write access to data
|
||||
# - /home/ubuntu/logs:/home/ubuntu/logs:rw # Read-write access to data
|
||||
# - /root/data:/root/data:rw # Read-write access to data
|
||||
# - /root/logs:/root/logs:rw # Read-write access to data
|
||||
# network_mode: "host"
|
||||
algo_orchestrator:
|
||||
container_name: algo_orchestrator
|
||||
restart: "unless-stopped"
|
||||
restart: "no"
|
||||
build:
|
||||
context: ./
|
||||
dockerfile: ./algo_orchestrator/Dockerfile
|
||||
volumes:
|
||||
- /home/ubuntu/data:/home/ubuntu/data:rw # Read-write access to data
|
||||
- /home/ubuntu/logs:/home/ubuntu/logs:rw # Read-write access to data
|
||||
- /root/data:/root/data:rw # Read-write access to data
|
||||
- /root/logs:/root/logs:rw # Read-write access to data
|
||||
- ./:/algo_local_drive:rw # Read-write access to data
|
||||
network_mode: "host"
|
||||
engine_best_funding_rate:
|
||||
container_name: engine_best_funding_rate
|
||||
restart: "unless-stopped"
|
||||
restart: "no"
|
||||
build:
|
||||
context: ./
|
||||
dockerfile: ./engine_best_funding_rate/Dockerfile
|
||||
volumes:
|
||||
- /home/ubuntu/data:/home/ubuntu/data:rw # Read-write access to data
|
||||
- /home/ubuntu/logs:/home/ubuntu/logs:rw # Read-write access to data
|
||||
network_mode: "host"
|
||||
ws_extended_fund_rate_all:
|
||||
container_name: ws_extended_fund_rate_all
|
||||
restart: "unless-stopped"
|
||||
build:
|
||||
context: ./
|
||||
dockerfile: ./ws_extended_fund_rate_all/Dockerfile
|
||||
volumes:
|
||||
- /home/ubuntu/data:/home/ubuntu/data:rw # Read-write access to data
|
||||
- /home/ubuntu/logs:/home/ubuntu/logs:rw # Read-write access to data
|
||||
network_mode: "host"
|
||||
ws_aster_fund_rate_all:
|
||||
container_name: ws_aster_fund_rate_all
|
||||
restart: "unless-stopped"
|
||||
build:
|
||||
context: ./
|
||||
dockerfile: ./ws_aster_fund_rate_all/Dockerfile
|
||||
volumes:
|
||||
- /home/ubuntu/data:/home/ubuntu/data:rw # Read-write access to data
|
||||
- /home/ubuntu/logs:/home/ubuntu/logs:rw # Read-write access to data
|
||||
- /root/data:/root/data:rw # Read-write access to data
|
||||
- /root/logs:/root/logs:rw # Read-write access to data
|
||||
network_mode: "host"
|
||||
ws_aster:
|
||||
container_name: ws_aster
|
||||
restart: "unless-stopped"
|
||||
restart: "no"
|
||||
build:
|
||||
context: ./
|
||||
dockerfile: ./ws_aster/Dockerfile
|
||||
volumes:
|
||||
- /home/ubuntu/data:/home/ubuntu/data:rw # Read-write access to data
|
||||
- /home/ubuntu/logs:/home/ubuntu/logs:rw # Read-write access to data
|
||||
- /root/data:/root/data:rw # Read-write access to data
|
||||
- /root/logs:/root/logs:rw # Read-write access to data
|
||||
network_mode: "host"
|
||||
ws_aster_user:
|
||||
container_name: ws_aster_user
|
||||
restart: "unless-stopped"
|
||||
restart: "no"
|
||||
build:
|
||||
context: ./
|
||||
dockerfile: ./ws_aster_user/Dockerfile
|
||||
volumes:
|
||||
- /home/ubuntu/data:/home/ubuntu/data:rw # Read-write access to data
|
||||
- /home/ubuntu/logs:/home/ubuntu/logs:rw # Read-write access to data
|
||||
- /root/data:/root/data:rw # Read-write access to data
|
||||
- /root/logs:/root/logs:rw # Read-write access to data
|
||||
network_mode: "host"
|
||||
ws_extended_fund_rate:
|
||||
container_name: ws_extended_fund_rate
|
||||
restart: "unless-stopped"
|
||||
restart: "no"
|
||||
build:
|
||||
context: ./
|
||||
dockerfile: ./ws_extended_fund_rate/Dockerfile
|
||||
volumes:
|
||||
- /home/ubuntu/data:/home/ubuntu/data:rw # Read-write access to data
|
||||
- /home/ubuntu/logs:/home/ubuntu/logs:rw # Read-write access to data
|
||||
- /root/data:/root/data:rw # Read-write access to data
|
||||
- /root/logs:/root/logs:rw # Read-write access to data
|
||||
network_mode: "host"
|
||||
ws_extended_orderbook:
|
||||
container_name: ws_extended_orderbook
|
||||
restart: "unless-stopped"
|
||||
restart: "no"
|
||||
build:
|
||||
context: ./
|
||||
dockerfile: ./ws_extended_orderbook/Dockerfile
|
||||
volumes:
|
||||
- /home/ubuntu/data:/home/ubuntu/data:rw # Read-write access to dataw
|
||||
- /home/ubuntu/logs:/home/ubuntu/logs:rw # Read-write access to data
|
||||
- /root/data:/root/data:rw # Read-write access to dataw
|
||||
- /root/logs:/root/logs:rw # Read-write access to data
|
||||
network_mode: "host"
|
||||
# ws_extended_trades:
|
||||
# container_name: ws_extended_trades
|
||||
# restart: "unless-stopped"
|
||||
# build:
|
||||
# context: ./
|
||||
# dockerfile: ./ws_extended_trades/Dockerfile
|
||||
# volumes:
|
||||
# - /home/ubuntu/data:/home/ubuntu/data:rw # Read-write access to dataw
|
||||
# - /home/ubuntu/logs:/home/ubuntu/logs:rw # Read-write access to data
|
||||
# network_mode: "host"
|
||||
ws_extended_user:
|
||||
container_name: ws_extended_user
|
||||
restart: "unless-stopped"
|
||||
restart: "no"
|
||||
build:
|
||||
context: ./
|
||||
dockerfile: ./ws_extended_user/Dockerfile
|
||||
volumes:
|
||||
- /home/ubuntu/data:/home/ubuntu/data:rw # Read-write access to data
|
||||
- /home/ubuntu/logs:/home/ubuntu/logs:rw # Read-write access to data
|
||||
- /root/data:/root/data:rw # Read-write access to data
|
||||
- /root/logs:/root/logs:rw # Read-write access to data
|
||||
network_mode: "host"
|
||||
# ws_extended_trades:
|
||||
# container_name: ws_extended_trades
|
||||
# restart: "no"
|
||||
# build:
|
||||
# context: ./
|
||||
# dockerfile: ./ws_extended_trades/Dockerfile
|
||||
# volumes:
|
||||
# - /root/data:/root/data:rw # Read-write access to dataw
|
||||
# - /root/logs:/root/logs:rw # Read-write access to data
|
||||
# network_mode: "host"
|
||||
|
||||
|
||||
# ng:
|
||||
# container_name: ng
|
||||
# restart: "unless-stopped"
|
||||
# restart: "no"
|
||||
# build:
|
||||
# context: ./
|
||||
# dockerfile: ./ng/Dockerfile
|
||||
# volumes:
|
||||
# - /home/ubuntu/data:/home/ubuntu/data:rw # Read-write access to data
|
||||
# - /home/ubuntu/logs:/home/ubuntu/logs:rw # Read-write access to data
|
||||
# - /root/data:/root/data:rw # Read-write access to data
|
||||
# - /root/logs:/root/logs:rw # Read-write access to data
|
||||
# network_mode: "host"
|
||||
Reference in New Issue
Block a user