2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-21 13:23:02 +01:00

add django-cms

This commit is contained in:
kev
2016-06-10 15:15:53 +08:00
parent 521f611fcd
commit d9f8e19db2
4 changed files with 57 additions and 0 deletions

34
django-cms/README.md Normal file
View File

@@ -0,0 +1,34 @@
django-cms
==========
[django CMS][1] is a modern web publishing platform built with Django, the web
application framework “for perfectionists with deadlines”.
### docker-compose.yml
```yaml
django-cms:
image: vimagick/django-cms
ports:
- "8000:80"
restart: always
```
### up and running
```bash
$ 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
```
[1]: https://www.django-cms.org/en/