mirror of
https://github.com/d0zingcat/deploy.git
synced 2026-05-13 23:16:53 +00:00
26 lines
774 B
YAML
26 lines
774 B
YAML
version: "3.9"
|
|
services:
|
|
bot:
|
|
image: hummingbot/hummingbot:latest
|
|
# image: hummingbot/hummingbot:latest-arm
|
|
volumes:
|
|
- "./hummingbot_files/conf:/conf"
|
|
- "./hummingbot_files/conf/connectors:/conf/connectors"
|
|
- "./hummingbot_files/conf/strategies:/conf/strategies"
|
|
- "./hummingbot_files/logs:/logs"
|
|
- "./hummingbot_files/data:/data"
|
|
- "./hummingbot_files/scripts:/scripts"
|
|
- "./hummingbot_files/certs:/certs"
|
|
# environment:
|
|
# - CONFIG_PASSWORD=[password]
|
|
# - CONFIG_FILE_NAME=simple_pmm_example.py
|
|
# - CONFIG_FILE_NAME=conf_pure_mm_1.yml
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m"
|
|
max-file: 5
|
|
tty: true
|
|
stdin_open: true
|
|
network_mode: host
|