Configure a running Bugzilla system using Docker
- 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
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.
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
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.
- Enable SSL support.