tikiwiki/tikiwikiTiki is the Free / Libre / Open Source Web Application with the most built-in features. You can find more useful information at [] Available from []
docker pull tikiwiki/tikiwiki:latest
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
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
The following creates and start two containers:
tikiwikiymlservices: 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
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:
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:
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.
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
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 登录认证访问私有仓库
在 Linux 系统配置镜像服务
在 Docker Desktop 配置镜像
Docker Compose 项目配置
Kubernetes 集群配置 Containerd
K3s 轻量级 Kubernetes 镜像加速
在宝塔面板一键配置镜像
Synology 群晖 NAS 配置
飞牛 fnOS 系统配置镜像
极空间 NAS 系统配置服务
爱快 iKuai 路由系统配置
绿联 NAS 系统配置镜像
QNAP 威联通 NAS 配置
Podman 容器引擎配置
HPC 科学计算容器配置
ghcr、Quay、nvcr 等镜像仓库
无需登录使用专属域名
需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单
免费版仅支持 Docker Hub 访问,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。
专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等;免费版仅支持 docker.io。
当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。
通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。
先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。
使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。
来自真实用户的反馈,见证轩辕镜像的优质服务