Docker image for the Django demo project of django-comments-xtd.
1.4K
Dockerfile to create a Docker container image to test the django-comments-xtd demo project.
The Django demo project provides comments support to several models, defining the maximum thread level on per app.model basis. The demo expose multiple features like moderation, removal suggestion flags, like/dislike flags, and list of users who liked/disliked comments.
Users can send comments to Articles and Quotes. Comments for Articles are handled through the ReactJS plugin included with django-comments-xtd while comments for Quotes use no JavaScript.
Automated builds of the image are available on Dockerhub and is the recommended method of installation.
docker pull danirus/django-comments-xtd-demo:latest
Alternatively you can build the image yourself.
docker build -t danirus/django-comments-xtd-demo github.com/danirus/docker-django-comments-xtd-demo
Start the demo project using:
docker run -d --name django-comments-xtd-demo --restart=always --publish 80:8000 danirus/django-comments-xtd-demo:latest
Comments sent by registered users don't have to be confirmed by mail, and neither need user's full name and mail address. To test sending comments as a logged in user visit the admin URL at http://localhost/admin/ and login as the user admin with password admin.
Content type
Image
Digest
Size
86.9 MB
Last updated
over 8 years ago
docker pull danirus/django-comments-xtd-demo