add dydx compose

This commit is contained in:
david-hummingbot
2024-09-13 23:03:34 +00:00
parent f14c887b62
commit 9f53d68247
2 changed files with 82 additions and 0 deletions

12
setup_dydx.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
# Pulling the required Docker images
docker compose pull
docker pull hummingbot/hummingbot:latest_dydx
# Creating .env file with the required environment variables
echo "CONFIG_PASSWORD=a" > .env
echo "BOTS_PATH=$(pwd)" >> .env
# Running docker-compose in detached mode
docker compose -f docker-compose-dydx.yml up -d