[Django]-How to run django with apache in a docker container correctly

2👍

what you did is right but it missing some custom things :

  1. First of all you need to link your django static file to the apache web server and to do that you need to add a service on your docker-compose.yml for the django part .

after that using volume you can link the django output as an input for apache

For more details thanks to follow this example

Leave a comment