Auto build docker image for zentao(禅道),include open source edition and pro edition.
DockerHub: https://hub.docker.com/r/zhangsean/zentao
Office Support: http://www.zentao.net/
Open soure edition
latest
18.5
18.4
18.5
18.4.beta1
18.5
18.4.alpha1
18.3
18.2
18.1
18.0
18.5
18.4
18.5
18.4.beta1
18.5
18.4.alpha1
18.3
18.2
18.1
18.0.beta3
18.5
18.4
18.5
18.4.beta1
18.5
18.4.alpha1
18.3
18.2
18.1
18.0.beta2
18.5
18.4
18.5
18.4.beta1
18.5
18.4.alpha1
18.3
18.2
18.1
18.0.beta1
17.8
17.7
17.6.2
17.6.1
17.6
17.5
17.4
17.3
17.2
17.1
16.1
16.0.beta1
15.7.1
15.7
15.6
15.3
15.0.3
15.0.2
15.0.1
15.0
12.5.3
20.0.beta1
12.5.1
12.4.3
12.4.2
12.4.1
12.3.3
12.3.2
12.3.1
12.3
12.2
12.1
12.0.1
12.0
11.7
11.6
11.5
Export zentao only:
mkdir -p /data/zbox && \
docker run -itd \
-p 80:80 \
-e ADMINER_USER="root" \
-e ADMINER_PASSWD="password" \
-v /data/zbox/:/opt/zbox/ \
--add-host smtp.exmail.qq.com:163.177.90.125 \
--name zentao-server \
zhangsean/zentao:latest
Export zentao and mysql:
mkdir -p /data/zbox && \
docker run -itd \
-p 80:80 \
-p 3306:3306 \
-e BIND_ADDRESS=false \
-e ADMINER_USER="root" \
-e ADMINER_PASSWD="password" \
-v /data/zbox/:/opt/zbox/ \
--add-host smtp.exmail.qq.com:163.177.90.125 \
--name zentao-server \
zhangsean/zentao:latest
Note: Make sure your host feed available on either port
80
or3306
.
ADMINER_USER
: set the web login database Adminer account.ADMINER_PASSWD
: set the web login database Adminer password.BIND_ADDRESS
: if set value withfalse
,the MySQL server will not bind address.- If can't send mail, you can use
extra_host
in docker-compose.yaml, or param--add-host
indokcer run
command.
Note: The Zentao administrator account is admin,and default initialization password is 123456. And MySQL root account password is 123456,please change password when you first login.
If you want upgrade the zentao version, just run a container with the latest docker image and mount the same zbox path
$volume/zbox/
.
# stop and backup old container
docker stop zentao-server
docker rename zentao-server zentao-server-bak
# backup zbox
cp -r /data/zbox /data/zbox-bak
# pull the latest image
docker pull zhangsean/zentao:latest
# run new container with the latest image and mount the same path
docker run -d -p 80:80 -p 3306:3306 \
-e ADMINER_USER="root" -e ADMINER_PASSWD="password" \
-e BIND_ADDRESS="false" \
-v /data/zbox/:/opt/zbox/ \
--add-host smtp.exmail.qq.com:163.177.90.125 \
--name zentao-server \
zhangsean/zentao:latest
docker logs -f zentao-server
You will see the upgrading process logs like following.
Installed Zentao version: 11.0
New Zentao version: 11.4
Backuping config/my.php and upload ...
Upgrading Zentao ...
Restoring config/my.php and upload ...
Upgraded Zentao version to: 11.4
Please visit your Zentao website to complete the upgrade task.
Start Apache success
Start Mysql success
Wait until Start Mysql success
, visit your zentao website to complete the upgrade task step by step.
After you complete the upgrade task in your zentao website and confirm everything looks good, delete the backups to save your disk space.docker rm -f zentao-server-bak && rm -rf /data/zbox-bak
Clone this repo, modify Dockerfile
or docker-entrypoint
if you want.
Then execute the following command:
docker build -t zentao .