Deploy React Frontend, FastApi Backend with Docker-Compose on Heroku – Nginx
I want to deploy a worker (FastApi) and a web (react) container to Heroku using docker-compose. Running locally, everything works. But on Heroku, the frontend cannot reach the backend. Dockerfile.worker FROM tiangolo/uvicorn-gunicorn-fastapi:python3.7 WORKDIR /app COPY app . COPY requirements.txt ./requirements.txt…