chore: remove vestigial env vars from docker-compose #121
Labels
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: cal/major-domo-database#121
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Context
The old
tiangolo/uvicorn-gunicorn-fastapibase image consumedWORKERS_PER_CORE,TIMEOUT, andGRACEFUL_TIMEOUTenv vars. After switching topython:3.12-slimwith explicit uvicorn CMD (PR #115), these are silently ignored.Task
Remove
WORKERS_PER_CORE,TIMEOUT, andGRACEFUL_TIMEOUTfrom docker-compose on both dev (ssh sba-db) and prod (ssh akamai). AddWEB_WORKERS=4(or appropriate count) to prod docker-compose.PR #123 opened: #123
Removed
WORKERS_PER_CORE,TIMEOUT, andGRACEFUL_TIMEOUTfrom the localdocker-compose.yml(in git) and from the remote files on bothsba-db(dev) andakamai(prod). AddedWEB_WORKERS=4to the prod docker-compose to override the Dockerfile default of 2 for production load.