Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions infrastructure/bicep/container-groups/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
Container Instances are:

- hb-deuro-usdt: Hummingbot (dEURO/USDT)
- hb-jusd-usdt: Hummingbot (JUSD/BTC)
- hb-deps-usdt: Hummingbot (dEPS/USDT)
- rk: RangeKeeper Liquidity Bot

Expand All @@ -30,6 +31,7 @@ There is an entrypoint script in the container to setup the individual environme
Connect to the running container:

- az container exec --resource-group rg-dfx-api-dev --name ci-dfx-hb-deuro-usdt-dev --exec-command /bin/bash
- az container exec --resource-group rg-dfx-api-dev --name ci-dfx-hb-jusd-usdt-dev --exec-command /bin/bash
- az container exec --resource-group rg-dfx-api-dev --name ci-dfx-hb-deps-usdt-dev --exec-command /bin/bash

Start the Hummingbot within the container:
Expand Down
3 changes: 2 additions & 1 deletion infrastructure/bicep/container-groups/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ API_NAME="api"
environmentOptions=("loc" "dev" "prd")

# "hb-deuro-usdt": Hummingbot (dEURO/USDT)
# "hb-jusd-usdt": Hummingbot (JuiceDollar/USDT)
# "hb-deps-usdt": Hummingbot (dEPS/USDT)
# "rk": RangeKeeper Liquidity Bot
instanceNameOptions=("hb-deuro-usdt" "hb-deps-usdt" "rk")
instanceNameOptions=("hb-deuro-usdt" "hb-jusd-usdt" "hb-deps-usdt" "rk")

# --- ARGUMENTS --- #
DOCKER_USERNAME=
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"fileShareQuota": {
"value": 100
},
"containerImage": {
"value": "dfxswiss/hummingbot:beta"
},
"containerVolumeMounts": {
"value": [
{
"name": "volume",
"mountPath": "/mnt/hummingbot",
"readOnly": false
}
]
},
"containerCPU": {
"value": 0.5
},
"containerMemory": {
"value": 1
},
"containerEnv": {
"value": [
{
"name": "BOT_DIR",
"value": "jusd-usdt-dev"
},
{
"name": "STRATEGY_FILE",
"value": "jusd-usdt-conf_pure_mm.yml"
}
]
},
"containerCommand": {
"value": []
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"fileShareQuota": {
"value": 100
},
"containerImage": {
"value": "dfxswiss/hummingbot:latest"
},
"containerVolumeMounts": {
"value": [
{
"name": "volume",
"mountPath": "/mnt/hummingbot",
"readOnly": false
}
]
},
"containerCPU": {
"value": 0.5
},
"containerMemory": {
"value": 1
},
"containerEnv": {
"value": [
{
"name": "BOT_DIR",
"value": "jusd-usdt"
},
{
"name": "STRATEGY_FILE",
"value": "jusd-usdt-conf_pure_mm.yml"
}
]
},
"containerCommand": {
"value": []
}
}
}
Loading