dockerfiles/django-cms/README.md

649 B

django-cms

django CMS is a modern web publishing platform built with Django, the web application framework “for perfectionists with deadlines”.

docker-compose.yml

django-cms:
  image: vimagick/django-cms
  ports:
    - "8000:80"
  restart: always

up and running

$ docker-compose up -d

$ docker-compose exec django-cms sh
/app # ./manage.py createsuperuser
Username (leave blank to use 'root'): admin
Email address: admin@easypi.info
Password: ******
Password (again): ******
Superuser created successfully.
/app # exit

$ firefox http://easypi.info:8000