A single php app in docker to dominate them all
Go to file
2023-11-11 17:15:26 +01:00
manual ajuste formato manual 2023-11-11 17:15:26 +01:00
src eliminar comentarios HTML del codigo 2021-08-26 09:19:37 +02:00
WebContent_Example-1 Example 1 of Documents in /var/www/html 2021-03-12 03:28:29 +01:00
captura-soloconlinux.png Add files via upload 2022-01-24 13:27:48 +01:00
Dockerfile Imagen es ahora Debian 11 Bullseye 2021-08-26 09:33:53 +02:00
Dockerfile-wkhtmltopdf Dockerfile especial con wkhtmltopdf para generar PDFs a partir de paginas Web 2022-02-02 04:23:48 +01:00
README.md actualizacion doc 2023-11-11 17:08:43 +01:00

microCMS

A single php to dominate them all

RUN CONTAINER

Accessing through port 8088 (for example) and mounting a persistent volume named WEB to edit from outside the host.

The container will run with the name 'web'

Enter the command:

 docker run -d -ti --name web -p 8088:80 -v WEB:/var/www/html:rw luisgutierrez/webcmsserver:2.2

LOCATE VOLUME

To locate where the volume is mounted, run the following command:

 docker inspect web |grep -i volume|grep -i source

TAGs

1.0 - Debian 10 buster   + Apache 2 + PHP 7.3
2.0 - Debian 11 bullseye + Apache 2 + PHP 7.4

HOWTO PUBLISH

To create your website pages, check the documentation at: Documentacion sobre como publicar -es español-

Note: You need to create a directory structure, which must start with 3 digits and a period followed by the text you want.

Example:

001.Blog
002.Articles
003.My Documents

Within each created directory, simply make a link to the index.php file in / var / www / html so that the web pages are autogenerated.

Example for a first post:

mkdir 001.Blog
cd 001.Blog
touch 000.txt 000.png
ln -s /var/www/html/index.php .

The real example of the result, my own website: soloconlinux.org.es

ScreenShot

Luisgulo (soloconlinux.org.es)