mirror of
https://github.com/d0zingcat/deploy.git
synced 2026-05-13 15:09:33 +00:00
13 lines
301 B
Bash
13 lines
301 B
Bash
#!/bin/bash
|
|
|
|
# Pulling the required Docker images
|
|
docker compose pull
|
|
docker pull hummingbot/hummingbot:latest
|
|
|
|
# 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 up -d
|