Skip to content

qijunbo/docker-bugzilla

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 

Repository files navigation

docker-bugzilla

Run a docker container for Bugzilla. The image will install apache2/bugzilla/msmtp and setup bugzilla to run as localhost. It will remove the default localhost (html) and create a symbolic link to /var/www/html for bugzilla. The dockerfile will disable the default and enable the bugzilla.conf which is included. It will also enable cgi, headers, and expires and a start script that will run the final ./checksetup/pl to complete the installation.

start script

You can uncomment any of the DEFAULT variables and the sed execution to simply substitute values via the command line during docker run. By default apache runs as apache so you can change ownership to apache to use the DEFAULT variable to set the group and owner to www-data.

Usage

For my case I am upgrading and existing installation of bugzilla and I am passing in three different conf files at run time using a -v option. For most cases you can use pass in various environment varibles.

docker run -p 8001:80
--name bugzilla506
-v /data/vol/bugzilla:/var/www/html
--restart=always
-d bugzilla:5.0.6

About

docker container for bugzilla

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 64.2%
  • Shell 35.8%