Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 295 Bytes

File metadata and controls

21 lines (15 loc) · 295 Bytes

django-blog with docker

run with docker

docker run -d --restart=always --name=blog \
  -p 8088:80 \
  willdockerhub/django-blog

create superuer

docker exec -it blog python manage.py createsuperuser --username admin

accee browers

http://192.168.1.1:8088