Fixing Docker

This commit is contained in:
2026-06-12 22:03:32 -04:00
parent ede943bf29
commit bc3643a44f
+3 -2
View File
@@ -22,7 +22,8 @@ services:
# --- Web API auth --- # --- Web API auth ---
auth_api: auth_api:
build: 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 ssh: ["default"] # Uses host's SSH agent
dockerfile: Dockerfile # Optional: Specify if your Dockerfile has a non-standard name dockerfile: Dockerfile # Optional: Specify if your Dockerfile has a non-standard name
container_name: auth_api container_name: auth_api
@@ -33,7 +34,7 @@ services:
# Environment variables your API needs, e.g., database connection # Environment variables your API needs, e.g., database connection
# Add other necessary environment variables # Add other necessary environment variables
env_file: env_file:
- ../textsender_auth/.env - ../textsender-auth/.env
depends_on: depends_on:
auth_db: auth_db:
condition: service_healthy condition: service_healthy