Skip to content
This repository has been archived by the owner on Jul 21, 2021. It is now read-only.

Docker based BMO development environment

Notifications You must be signed in to change notification settings

mozilla-bteam/docker-bmo-dev

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker Bugzilla

Configure a running Bugzilla system using Docker

Features

  • Running latest Centos
  • Preconfigured with initial data and test product
  • Running Apache2 and MySQL Community Server 5.6
  • Code resides in /var/www/html/bmo and can be updated, diffed, and branched using standard git commands

How to install Docker

Visit Docker and get Docker up and running on your system. Optionally you could install Docker Compose to help with setting up a new container.

How to start Bugzilla Docker image

To start a new container (or rerun your last container) you simply do:

$ docker-compose up

This will stay in the foreground and you will see the output from supervisord. You can use the -d option to run the container in the background.

To stop, start or remove the container that was created from the last run, you can do:

$ docker-compose stop
$ docker-compose start
$ docker-compose rm

How to access the Bugzilla container

If you are using Linux, you can simply point your browser to http://localhost/bmo to see the the Bugzilla home page.

The Administrator login is admin and the password is password. You can use the Administrator account to creat other users, add products or components, etc.

You can also login to the container using docker exec -it bmo-dev su - bugzilla command. You can run multiple containers but you will need to give each one a different name/hostname as well as non-conflicting ports numbers for httpd and vnc.

TODO

  • Enable SSL support.

About

Docker based BMO development environment

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages