Sign inSign up

tmsoftware/cms-made-simple

By tmsoftware

Updated over 8 years ago

CMS Made Simple is an Open Source Content Management System.

Image
0

2.1K

tmsoftware/cms-made-simple repository overview

Quick reference

** Where to get CMS Made Simple? ** https://www.cmsmadesimple.org/

What is CMS Made Simple?

CMS Made Simple is an Open Source Content Management System. It’s built using PHP and the Smarty Engine, which keeps content, functionality, and templates separated.

How to use this image

$ docker container run -p some_port:80 --name a_fancy_name -d tmsoftware/cms-made-simple

Example for a docker-compose file:

version: '3'
services:
    cms_ms:
        image: cms-made-simple
        ports:
            - 80:80
        volumes:
            - ./volumes/html:/var/www/html:z
        depends_on:
            - mysql

    mysql:
        image: mysql:5.6
        volumes:
            - ./volumes/mysql:/var/lib/mysql
        environment:
            MYSQL_ROOT_PASSWORD: password

Tag summary

Content type

Image

Digest

Size

131 MB

Last updated

over 8 years ago

docker pull tmsoftware/cms-made-simple