Grav is a Fast, Simple, and Flexible file-based Web-platform. There is Zero installation required. Although Grav follows principles similar to other flat-file CMS platforms, it has a different design philosophy than most.
The underlying architecture of Grav is built using well established and best-in-class technologies. This is to ensure that Grav is simple to use and easy to extend. Some of these key technologies include:
- Twig Templating: for powerful control of the user interface
- Markdown: for easy content creation
- YAML: for simple configuration
- Parsedown: for fast Markdown and Markdown Extra support
- Doctrine Cache: for performance
- Pimple Dependency Injection Container: for extensibility and maintainability
- Symfony Event Dispatcher: for plugin event handling
- Symfony Console: for CLI interface
- Gregwar Image Library: for dynamic image manipulation
A Docker image based on Alpine linux with Grav CMS and PHP/nginx.
- ej52/alpine-nginx-php image
- Port 80 exposed.
- /var/www volume mount.
- No custom features.
docker create --name=grav \
--restart=always \
-p 80:80 \
-v <path/to/something>:/var/www \
dsavell/grav
docker start grav
You can choose between ,using tags, various branch versions of GRAV, no tag is required for grav default installation.
Add one of the tags, if required:
- Example: dsavell/grav:admin
- latest: GRAV Default Installation
- admin: GRAV Default Installation + Grav-Admin-Plugin
- blog: GRAV Default Installation + Grav-Admin-Plugin + Blog-Skeleton
Access the webui at http://<your-ip>
, for more information check out GRAV
- Shell Access to container when it is running:
docker exec -it grav /bin/bash
- CMS not usable behind reverse proxy.
- 10/04/2018: The Volume Release
- The /var/www volume can now be mounted.
- 02/01/2018: The 2018 Release
- Improved Code
- Now using github API to pull latest GRAV release
- 27/07/2017: The Automated Release
- Updated tag "blog" to now use github API to download latest Blog-Skeleton zip file
- Improved code on all tags
- Typo corrections on the README.md
- 29/06/2017: The Blog Release
- added tag blog This is a skeleton of Blog-Skeleton
- 28/06/2017: The Even Smaller Release
- Now uses image from ej52/alpine-nginx-php
- Size has reduced from 657 to 267mb & with admin plugin 277mb
- 22/06/2017: The Better Release
- Now uses image from php:7.0-apache
- Size has reduced from 1.2gb to 657mb & with admin plugin 682mb
- Corrected GRAV permissions
- Less packages installed during Docker build + cleanup
- 21/06/2017: Initial Release
- First Initial Release
- No Optimization
- Full Operating System of centos used
- No Custom Features