Summary
In docker-compose.yml line 190, there is a typo in the expose directive for the docs service:
expose:
- "\${DOCS_CONTAINER_:-4173}" # Missing "PORT" — should be DOCS_CONTAINER_PORT
Impact
- The env var
DOCS_CONTAINER_ is never set (the intended var is DOCS_CONTAINER_PORT)
- Always evaluates to the default
4173 regardless of configuration
- Inconsistent with the
ports directive on line 193 which correctly uses DOCS_CONTAINER_PORT
Affected Files
docker-compose.yml (line 190)
Fix
Change DOCS_CONTAINER_ to DOCS_CONTAINER_PORT.
Summary
In
docker-compose.ymlline 190, there is a typo in the expose directive for the docs service:Impact
DOCS_CONTAINER_is never set (the intended var isDOCS_CONTAINER_PORT)4173regardless of configurationportsdirective on line 193 which correctly usesDOCS_CONTAINER_PORTAffected Files
docker-compose.yml(line 190)Fix
Change
DOCS_CONTAINER_toDOCS_CONTAINER_PORT.