miketallroth / croogo-docker

One step Croogo CMS demo deployment using docker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Croogo

Croogo is a free, open source, content management system for PHP, released under MIT License. This docker image will deploy the Croogo CMS using a Sqlite database fully encapsulated within a single Docker container. It should be used for experimentation and demo purposes only. It has not been tested for production deployment.

How to use this image

Run the image

Select an unused port to publish Croogo. This example uses 7080. If you will access the shell, naming the container is a good idea. This example uses "croogo".

docker run -p 7080:80 --name croogo miketallroth/croogo-demo

Try out Croogo CMS!

Access Croogo at,

http://localhost:7080/

Access the admin section

Login to the admin section at,

http://localhost:7080/admin/

using croogo/croogo as the username/password.

Access a shell

To access the Croogo root directory via shell,

docker exec -it croogo /bin/bash

Substitute croogo if you named your container something else.

Versions

Croogo uses semantic versioning. This repository follows that, except that it adds a build number to differentiate different builds for a given Croogo release. No new features will be added via this mechanism, but rather to simply correct errors in the build, based on the installation process, so subsequent builds within the same major.minor.patch number will simply change the install process of the demo.

Any 4.0.7-n build in this repo utilize Croogo 4.0.7 regardless of any subsequent commits to the croogo-app or croogo repositories.

Contribute

Pull Requests are welcome at Github

About

One step Croogo CMS demo deployment using docker


Languages

Language:PHP 73.4%Language:Dockerfile 26.6%