
tikiwiki/tikiwiki
这是一款为史上最全面的CMS量身打造的Docker镜像,集成了该内容管理系统运行所需的全套环境配置与核心功能组件,致力于为用户提供便捷高效的部署体验,助力开发者快速搭建从基础内容管理到复杂业务集成的全功能平台,全面满足多样化场景需求,堪称目前针对该顶级CMS的一站式容器化解决方案。
让 AI 帮你使用轩辕镜像? · 展开查看说明 · 点击收起说明
如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这句话即可:
请先完整阅读并严格遵守以下文档中的全部规则与要求:
https://xuanyuan.cloud/agents.md
在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
Tiki Wiki CMS Groupware Docker Image
Tiki is the Free / Libre / Open Source Web Application with the most built-in features.
Use cases: Web Publishing, Collaboration, Project Management, Office Suite, Knowledge base, Shopping Cart, Social Networking, CRM, Membership, E-learning, Tiki Trackers (the built-in database web apps builder and low-code / no-code application framework).
Available from https://hub.docker.com/r/tikiwiki/tikiwiki
Project source code: https://gitlab.com/tikiwiki/tiki
Organization website: []
You can find more useful information such as contributing guidelines and more at []
Pulling
docker pull tikiwiki/tikiwiki:latest
Running
Variables
Some env variables are provided to setup the database, but you can also mount your configurations files inside container. The env vars and the default values are listed below and the names are self explanatory.
TIKI_DB_VERSION=30 TIKI_DB_HOST='db' TIKI_DB_USER TIKI_DB_PASS TIKI_DB_NAME=tikiwiki
Single container
Example to get a running container below.
docker run --rm --name tiki --link mariadb:db \ -e TIKI_DB_USER=tiki \ -e TIKI_DB_PASS=wiki \ -p 80:80 \ -d tikiwiki/tikiwiki
docker-compose
The following creates and start two containers:
- Tiki with port 80 published on host
- MariaDB instance with the schema
tikiwiki
ymlservices: tiki: image: tikiwiki/tikiwiki:latest ports: - "80:80" depends_on: - db environment: - TIKI_DB_USER=tiki - TIKI_DB_PASS=wiki - TIKI_DB_NAME=tikiwiki db: image: mariadb environment: - MYSQL_USER=tiki - MYSQL_PASSWORD=wiki - MYSQL_DATABASE=tikiwiki - MYSQL_ROOT_PASSWORD=tkwkiiii - TERM=dumb
scalable mode with docker-compose
The following recipe makes possible to grow the amount of Tiki containers, so in this way, it is possible to use more resources from host to handle incoming traffic.
Concerning about this mode:
- It it not compatible with the web installer, so installing the database using the command line is needed.
- It is needed to have a reverse proxy load balancing traffic to Tiki containers.
docker-compose.yml
This setup uses eeacms/haproxy container as reverse proxy and load *** and
declare a set of volumes. When new tiki containers are created, they will share
the same set of volumes.
ymlservices: haproxy: image: eeacms/haproxy depends_on: - tiki ports: - "80:5000" environment: BACKENDS: "tiki" DNS_ENABLED: "true" LOG_LEVEL: "info" tiki: image: tikiwiki/tikiwiki:latest depends_on: - db deploy: replicas: 2 environment: - TIKI_DB_HOST=db - TIKI_DB_USER=tiki - TIKI_DB_PASS=wiki - TIKI_DB_NAME=tikiwiki volumes: - tiki_files:/var/www/html/files/ - tiki_img_trackers:/var/www/html/img/trackers/ - tiki_img_wiki_up:/var/www/html/img/wiki_up/ - tiki_img_wiki:/var/www/html/img/wiki/ - tiki_modules_cache:/var/www/html/modules/cache/ - tiki_storage:/var/www/html/storage/ - tiki_temp:/var/www/html/temp/ - tiki_sessions:/var/www/sessions/ - tiki_js_files:/var/www/html/public/generated/ db: image: mariadb environment: - MYSQL_USER=tiki - MYSQL_PASSWORD=wiki - MYSQL_DATABASE=tikiwiki - MYSQL_ROOT_PASSWORD=tkwkiiii - TERM=dumb volumes: tiki_files: tiki_img_trackers: tiki_img_wiki_up: tiki_img_wiki: tiki_modules_cache: tiki_storage: tiki_temp: tiki_sessions: tiki_js_files:
Starting containers
First it is needed to copy the YML above in a folder with
a descriptive name, like example.com.
Then, inside the folder example.com, the following command
starts all container from docker-compose.yml.
shdocker compose up -d
After wait all containers to start and the console prompt appears
again, the following command shows the containers running for
docker-compose.yml on folder example.com.
docker ps
The output should be like:
Name Command State Ports ------------------------------------------------------------------------------------ examplecom_db_1 docker-entrypoint.sh mysqld Up 3306/tcp examplecom_haproxy_1 /docker-entrypoint.sh hapr ... Up 0.0.0.0:80->5000/tcp examplecom_tiki_1 /entrypoint.sh apache2-for ... Up 443/tcp, 80/tcp
There is 1 container running for each service (db, haproxy, tiki) in example.com folder.
Installing database
There is a command line installer available in tiki folder that should be used to install the database. WE CAN NOT USE THE WEB INSTALLER!. The following command installs Tiki database
shdocker compose exec tiki php console.php database:install
Scaling containers
If more Tiki container is wanted, the following command launch new containers.
shdocker compose scale tiki=3
Now, the following containers will be listed on docker-compose ps:
shName Command State Ports ------------------------------------------------------------------------------------ examplecom_db_1 docker-entrypoint.sh mysqld Up 3306/tcp examplecom_haproxy_1 /docker-entrypoint.sh hapr ... Up 0.0.0.0:80->5000/tcp examplecom_tiki_1 /entrypoint.sh apache2-for ... Up 443/tcp, 80/tcp examplecom_tiki_2 /entrypoint.sh apache2-for ... Up 443/tcp, 80/tcp examplecom_tiki_3 /entrypoint.sh apache2-for ... Up 443/tcp, 80/tcp
更多相关 Docker 镜像与资源
以下是 tikiwiki/tikiwiki 相关的常用 Docker 镜像,适用于 不同场景 等不同场景:
- library/wordpress Docker 镜像说明(WordPress 内容管理系统,适合博客和网站建设)
- bitnami/wordpress Docker 镜像说明(WordPress 内容管理系统,Bitnami 企业级配置)
- amielucha/wordpress Docker 镜像说明(Wordpress 容器镜像,适合 amielucha 维护的 Wordpress 工作负载部署)
- amd64/drupal Docker 镜像说明(Drupal 内容管理系统,AMD64 架构版本)
Deployment & Usage Documentation
镜像拉取方式
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
轩辕镜像加速拉取命令点我查看更多 tikiwiki 镜像标签
DockerHub 原生拉取命令
镜像拉取常见问题
功能
错误码
用户好评
来自真实用户的反馈,见证轩辕镜像的优质服务
