mirror of
https://github.com/d0zingcat/deploy.git
synced 2026-05-14 15:09:44 +00:00
38 lines
1.1 KiB
YAML
38 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/logs:/home/hummingbot/logs"
|
|
- "./hummingbot_files/data:/home/hummingbot/data"
|
|
- "./hummingbot_files/scripts:/home/hummingbot/scripts"
|
|
- "./hummingbot_files/certs:/home/hummingbot/certs"
|
|
# environment:
|
|
# - CONFIG_PASSWORD=a
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "5"
|
|
tty: true
|
|
stdin_open: true
|
|
network_mode: host
|
|
|
|
gateway:
|
|
container_name: gateway
|
|
image: hummingbot/gateway:development
|
|
ports:
|
|
- "15888:15888"
|
|
- "8080:8080"
|
|
volumes:
|
|
- "./gateway_files/conf:/home/gateway/conf"
|
|
- "./gateway_files/logs:/home/gateway/logs"
|
|
- "./gateway_files/db:/home/gateway/db"
|
|
- "./hummingbot_files/certs:/home/gateway/certs"
|
|
# environment:
|
|
# - GATEWAY_PASSPHRASE=a
|