Files
deploy/hummingbot_with_dashboard/docker-compose.yml
david-hummingbot 87b3223cb6 update compose files
2024-03-15 12:50:58 +00:00

32 lines
1.1 KiB
YAML

version: "3.9"
services:
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/conf/strategies:/home/hummingbot/conf/controllers"
- "./hummingbot_files/conf/scripts:/home/hummingbot/conf/scripts"
- "./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"
tty: true
stdin_open: true
network_mode: host
dashboard:
container_name: dashboard
image: hummingbot/dashboard:latest
volumes:
- ./hummingbot_files/data:/home/dashboard/data
- /var/run/docker.sock:/var/run/docker.sock
ports:
- "8501:8501"