From 2ed70df29a365ef25e55e8c18c4a72d32126c1d5 Mon Sep 17 00:00:00 2001 From: cardosofede Date: Fri, 28 Apr 2023 18:39:19 -0300 Subject: [PATCH] (feat) first implementation of Hummingbot + Dashboard --- hummingbot_with_dashboard/docker-compose.yml | 26 ++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 hummingbot_with_dashboard/docker-compose.yml diff --git a/hummingbot_with_dashboard/docker-compose.yml b/hummingbot_with_dashboard/docker-compose.yml new file mode 100644 index 0000000..78a77d2 --- /dev/null +++ b/hummingbot_with_dashboard/docker-compose.yml @@ -0,0 +1,26 @@ +version: "3.9" +services: + bot: + container_name: hummingbot + image: dardonacci/hummingbot:multiarch + 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 + logging: + driver: "json-file" + options: + max-size: "10m" + max-file: 5 + tty: true + stdin_open: true + network_mode: host + dashboard: + container_name: dashboard + image: dardonacci/streamlit-apps:latest + volumes: + - ./hummingbot_files/data:/home/streamlit-apps/data + ports: + - "8501:8501"