From bc3643a44f5ef57732f0959f88a55f3de980d516 Mon Sep 17 00:00:00 2001 From: phoenix Date: Fri, 12 Jun 2026 22:03:32 -0400 Subject: [PATCH] Fixing Docker --- docker-compose.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 74ea8b9..0f0221a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -22,7 +22,8 @@ services: # --- Web API auth --- auth_api: build: - context: ../textsender_auth # IMPORTANT: Relative path to the local checkout of your web API repo (containing the Dockerfile) + # Might want to change the naming convention at some point for the repo names. textsender-models, textsender-auth, textesender-api, etc + context: ../textsender-auth # IMPORTANT: Relative path to the local checkout of your web API repo (containing the Dockerfile) ssh: ["default"] # Uses host's SSH agent dockerfile: Dockerfile # Optional: Specify if your Dockerfile has a non-standard name container_name: auth_api @@ -33,7 +34,7 @@ services: # Environment variables your API needs, e.g., database connection # Add other necessary environment variables env_file: - - ../textsender_auth/.env + - ../textsender-auth/.env depends_on: auth_db: condition: service_healthy