BiaoLiu / zentao

auto build docker image for zentao(禅道).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker Image for Zentao

Docker Build Status Docker Pulls Docker Automated build ImageLayers Size ImageLayers Layers

Auto build docker image for zentao(禅道),include open source edition and pro edition.

DockerHub:https://hub.docker.com/r/idoop/zentao/

Office Support:http://www.zentao.net/

  • Zentao open source edition Version: 9.8.3 Linux_X64
  • Zentao pro Version: 6.7.3 Linux_X64

QuickStart

open soure edition:

mkdir -p /data/zbox && docker run -d -p 80:80 -p 3306:3306 \
        -e USER="root" -e PASSWD="password" \
        -e BIND_ADDRESS="false" \
        -v /data/zbox/:/opt/zbox/ \
        --name zentao-server \
        idoop/zentao:latest

pro edition:

mkdir -p /data/zbox && docker run -d -p 80:80 -p 3306:3306 \
        -e USER="root" -e PASSWD="password" \
        -e BIND_ADDRESS="false" \
        -v /data/zbox/:/opt/zbox/ \
        --name zentao-server-pro \
        idoop/zentao:pro

Note: Make sure your Host feed available on either port 80 or 3306.

Environment configuration

  • USER : sets the web login database Adminer account.
  • PASSWD : sets the web login database Adminer password.
  • BIND_ADDRESS : if set value with false,the Mysql server will not bind-address.

Note: The zentao administartor account is admin,and init password is 123456. And MySQL root account password is 123456,please change password when you first login.

Building the image

Clone this git,modify Dockerfile or docker-entrypoint if you want. Then execute the following command:

docker build -t zentao .

About

auto build docker image for zentao(禅道).

License:The Unlicense


Languages

Language:Shell 100.0%