Home > Back-end >  How to deploy dockerised react django web app to google app engine?
How to deploy dockerised react django web app to google app engine?

Time:02-12

I have created a web app which uses react as frontend and django as backend. I have also added nginx proxy to my both backend and frontend. I use docker compose to build and start all of my containers and everything works perfectly.

Now i want to deploy it to google app engine and I have no idea how to do that. I found this well written article, but it uses aws. I want to use app engine because its free (for now).

It would be really helpful if someone could guide me through this.

CodePudding user response:

App Engine Standard does not support containers but App Engine Flex does using Custom Runtimes.

Anyway, App Engine Flex does not support docker compose so you need to decouple your app into individual services (react, django, nginx (not necessary at all since GAE already has an NGINX proxy)) by using your own container for each element or use the already available runtimes when applies.

Then you can connect each other by using the App Engine URLs. This article can help you understand this approach (it is for NodeJS but the idea is the same).

CodePudding user response:

App engine supports specific runtimes, not dockerized applications. You would need to deploy a python app engine app for the Django backend and a nodejs app for the react app.

  • Related