From c63cdffd0efb9828ee1d12017da324403e521e71 Mon Sep 17 00:00:00 2001 From: Bill Date: Fri, 31 Oct 2025 12:37:41 -0400 Subject: [PATCH] fix: enable local Docker builds for development and testing --- docker-compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 00f5c88..0379e14 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,9 +1,9 @@ services: # Batch mode: Run one-time simulations with config file ai-trader-batch: - image: ghcr.io/xe138/ai-trader:latest + # image: ghcr.io/xe138/ai-trader:latest # Uncomment to build locally instead of pulling: - # build: . + build: . container_name: ai-trader-batch volumes: - ${VOLUME_PATH:-.}/data:/app/data @@ -42,9 +42,9 @@ services: # API mode: REST API server for Windmill integration ai-trader-api: - image: ghcr.io/xe138/ai-trader:latest + # image: ghcr.io/xe138/ai-trader:latest # Uncomment to build locally instead of pulling: - # build: . + build: . container_name: ai-trader-api entrypoint: ["./entrypoint-api.sh"] volumes: