Docker based app to manage PHP CMS like (Wordpress, Drupal, SPIP...)
50K+
GitHub: https://github.com/Elrondo46/multicms
Docker Image of Apache with:
version: "3"
services:
db:
image: mariadb:latest
restart: always
volumes:
- "db_data:/var/lib/mysql"
environment:
- MYSQL_DATABASE=test
- MYSQL_USER=test
- MYSQL_PASSWORD=test
- MYSQL_ROOT_PASSWORD=test
www:
image: tuxnvape/multicms:latest
restart: always
volumes:
- "www_data:/var/www/html"
restart: always
ports:
- 80:80
environment:
- [email protected]
- SMTP_HOST=container_mail
- SMTP_PORT=587
- CMS=wordpress #you can choose between four CMS (wordpress, drupal, spip or dotclear) (CMS variable must be all lowercase!!)
redis:
image: redis:latest
restart: always
mail:
image: boky/postfix
restart: always
environment:
RELAYHOST: smtp.realserver.fr
RELAYHOST_USERNAME: "test"
RELAYHOST_PASSWORD: "test"
MYNETWORKS: "172.1.0.0/16"
volumes:
www_data:
db_data:
Better using nginx-proxy or other proxy and link it directly to the www container.
Yes, watch the tags in Docker Hub page
Yes, amd64, armv7 and arm64.
Wordpress is fully pre-patched for HTTPS
Fully functionnal in vanilla version, last version installed
Tested install full sucessfull with latest version, all install mode are supported.
SPIP is fully patched to use InnoDB and not the official legacy engine. It's 100% fully functionnal. You need to add SPIP_VERSION variable
SPIP_VERSION="4.0.0" #Current version
Be carefull if you choose Drupal, change for another CMS or no CMS can danage the original container datas in case of misconfiguration.
Content type
Image
Digest
sha256:27180693a…
Size
312.8 MB
Last updated
about 7 hours ago
docker pull tuxnvape/multicms