Reputation: 2591
Does anyone use docker for a production image of Django, and how do you build that box?
I'm using the base python image with a requirements.txt for development. but id like to use a docker image for production too, but appreciate a web server should be used for this. I've used apache in the past. is there a good approach to this?
Thanks
Upvotes: 0
Views: 244
Reputation: 5027
I'm currently using Docker in production with Django. There is not only one valid approach, but there are some components (Docker images) that you're going to need.
This are the basic components that you are going to need in a Django app. Each one of this should be a Docker image.
Hope this helps, good luck!
Upvotes: 1