From da0139b978c09d95621bd4cd342b79a0754b8e1e Mon Sep 17 00:00:00 2001 From: nikspz <83953535+nikspz@users.noreply.github.com> Date: Wed, 13 Sep 2023 20:46:12 +0800 Subject: [PATCH 1/3] Fix/ Adding scripts to hummingbot_with_dashboard example folder --- hummingbot_with_dashboard/docker-compose.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/hummingbot_with_dashboard/docker-compose.yml b/hummingbot_with_dashboard/docker-compose.yml index 030a52e..e0f45aa 100644 --- a/hummingbot_with_dashboard/docker-compose.yml +++ b/hummingbot_with_dashboard/docker-compose.yml @@ -1,19 +1,21 @@ version: "3.9" services: - bot: + hummingbot: container_name: hummingbot image: hummingbot/hummingbot:latest volumes: - - ./hummingbot_files/conf:/home/hummingbot/conf - - ./hummingbot_files/conf/connectors:/home/hummingbot/conf/connectors - - ./hummingbot_files/conf/strategies:/home/hummingbot/conf/strategies - - ./hummingbot_files/logs:/home/hummingbot/logs - - ./hummingbot_files/data:/home/hummingbot/data + - "./hummingbot_files/conf:/home/hummingbot/conf" + - "./hummingbot_files/conf/connectors:/home/hummingbot/conf/connectors" + - "./hummingbot_files/conf/strategies:/home/hummingbot/conf/strategies" + - "./hummingbot_files/logs:/home/hummingbot/logs" + - "./hummingbot_files/data:/home/hummingbot/data" + - "./hummingbot_files/scripts:/home/hummingbot/scripts" + - "./hummingbot_files/certs:/home/hummingbot/certs" logging: driver: "json-file" options: max-size: "10m" - max-file: 5 + max-file: "5" tty: true stdin_open: true network_mode: host From e0d081d949bab3b1380631d561f826c7e0cd5360 Mon Sep 17 00:00:00 2001 From: nikspz <83953535+nikspz@users.noreply.github.com> Date: Wed, 13 Sep 2023 20:47:26 +0800 Subject: [PATCH 2/3] default name bot --- hummingbot_with_dashboard/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hummingbot_with_dashboard/docker-compose.yml b/hummingbot_with_dashboard/docker-compose.yml index e0f45aa..87f2964 100644 --- a/hummingbot_with_dashboard/docker-compose.yml +++ b/hummingbot_with_dashboard/docker-compose.yml @@ -1,7 +1,7 @@ version: "3.9" services: hummingbot: - container_name: hummingbot + container_name: bot image: hummingbot/hummingbot:latest volumes: - "./hummingbot_files/conf:/home/hummingbot/conf" From 9eaa6dc6a14de95455c6157bc31b01237af98cc1 Mon Sep 17 00:00:00 2001 From: nikspz <83953535+nikspz@users.noreply.github.com> Date: Wed, 13 Sep 2023 20:50:09 +0800 Subject: [PATCH 3/3] defaults to hummingbot --- hummingbot_with_dashboard/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hummingbot_with_dashboard/docker-compose.yml b/hummingbot_with_dashboard/docker-compose.yml index 87f2964..e0f45aa 100644 --- a/hummingbot_with_dashboard/docker-compose.yml +++ b/hummingbot_with_dashboard/docker-compose.yml @@ -1,7 +1,7 @@ version: "3.9" services: hummingbot: - container_name: bot + container_name: hummingbot image: hummingbot/hummingbot:latest volumes: - "./hummingbot_files/conf:/home/hummingbot/conf"