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:
34
django-cms/README.md
Normal file
34
django-cms/README.md
Normal 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/
|
||||
Reference in New Issue
Block a user