Can I change my Django Web Service into Python3?

Hello all,
My dockerized Django web app was implemented using docker, but I figured out later that docker-compose was useless in render.

Now I would like to revert the Web Service from Docker to Python3.

Is this possible or should I have to create a new Web Service?

It’s not currently possible to change the runtime of a service. You have the right idea that you might want to create a new service using a Python runtime and delete the old the service using a Docker runtime.

You can technically update your Dockerfile to use Python instead, but you would need to continue managing your own environment via Docker rather than using our native Python environment, which may be more appealing. Blueprints are a similar feature to docker-compose, albeit not a 1:1 mapping.

Additionally, it would be a good idea to submit your feedback for docker-compose support.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.