1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/django-cms
2017-05-08 07:05:07 +08:00
..
docker-compose.yml add django-cms 2016-06-10 15:15:53 +08:00
Dockerfile swith to new domain: easypi.pro 2017-05-08 07:05:07 +08:00
README.md add django-cms 2016-06-10 15:15:53 +08:00

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