Skip to content

Commit

Permalink
Remove legacy executors
Browse files Browse the repository at this point in the history
  • Loading branch information
miohtama committed Dec 15, 2022
1 parent 5ecdc78 commit 1b1dd79
Showing 1 changed file with 35 additions and 33 deletions.
68 changes: 35 additions & 33 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,41 @@
#
version: "3.9"
services:
pancake_8h_momentum:
container_name: pancake_8h_momentum
image: ghcr.io/tradingstrategy-ai/trade-executor:${TRADE_EXECUTOR_VERSION}
ports:
# Mapped in reverse proxy Caddyfile
- "127.0.0.1:19001:3456"
volumes:
# Save the strategy execution state in the local filesystem
- ./state:/usr/src/trade-executor/state
# Cache the dataset downloads in the local filesystem
- ./cache:/usr/src/trade-executor/cache
env_file:
# Generated by configurations/pancake_8h_momentum.sh
- ~/pancake_8h_momentum.env
# What we pass to tradexecutor.cli.main application
command: start

quickswap-momentum:
container_name: quickswap-momentum
image: ghcr.io/tradingstrategy-ai/trade-executor:${TRADE_EXECUTOR_VERSION}
ports:
# Mapped in reverse proxy Caddyfile
- "127.0.0.1:19002:3456"
volumes:
# Save the strategy execution state in the local filesystem
- ./state:/usr/src/trade-executor/state
# Cache the dataset downloads in the local filesystem
- ./cache:/usr/src/trade-executor/cache
env_file:
# Generated by configurations/quickswap-momentum.sh
- ~/quickswap-momentum.env
# What we pass to tradexecutor.cli.main application
command: start
# Legacy executors
#
# pancake_8h_momentum:
# container_name: pancake_8h_momentum
# image: ghcr.io/tradingstrategy-ai/trade-executor:${TRADE_EXECUTOR_VERSION}
# ports:
# # Mapped in reverse proxy Caddyfile
# - "127.0.0.1:19001:3456"
# volumes:
# # Save the strategy execution state in the local filesystem
# - ./state:/usr/src/trade-executor/state
# # Cache the dataset downloads in the local filesystem
# - ./cache:/usr/src/trade-executor/cache
# env_file:
# # Generated by configurations/pancake_8h_momentum.sh
# - ~/pancake_8h_momentum.env
# # What we pass to tradexecutor.cli.main application
# command: start
#
# quickswap-momentum:
# container_name: quickswap-momentum
# image: ghcr.io/tradingstrategy-ai/trade-executor:${TRADE_EXECUTOR_VERSION}
# ports:
# # Mapped in reverse proxy Caddyfile
# - "127.0.0.1:19002:3456"
# volumes:
# # Save the strategy execution state in the local filesystem
# - ./state:/usr/src/trade-executor/state
# # Cache the dataset downloads in the local filesystem
# - ./cache:/usr/src/trade-executor/cache
# env_file:
# # Generated by configurations/quickswap-momentum.sh
# - ~/quickswap-momentum.env
# # What we pass to tradexecutor.cli.main application
# command: start

pancake-eth-usd-sma:
container_name: pancake-eth-usd-sma
Expand Down

0 comments on commit 1b1dd79

Please sign in to comment.