I want to run a Django app in docker on Mac OS X. I have installed docker using the get-started
tutorial.
I refer to the Django doc in docker-library to build image, https://github.com/docker-library/docs/tree/master/django, I add the Dockerfile in a new Django project folder
The problem is I build the image and run the container successfully but whenever I visit container-ip:8000
or http://localhost:8000
, it doesn't work.
Anyone have solutions?
Here are the images and container info; docker_test
is my app
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE
docker_test latest fd6ceebc0c58 13 hours ago 761.5 MB
django onbuild 9cbcfd71d759 30 hours ago 728.6 MB
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
cbf98a73ea0a docker_test "python manage.py ru 26 minutes ago Up 26 minutes 0.0.0.0:8000->8000/tcp docker_app