Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/froque/docker-bugzilla

docker for bugzilla
https://github.com/froque/docker-bugzilla

Last synced: 8 days ago
JSON representation

docker for bugzilla

Awesome Lists containing this project

README

        

# docker-bugzilla
docker for bugzilla 4.4

# example docker-compose.yml

```
version: '2'
services:

bugzilla:
restart: always
image: froque/docker-bugzilla
links:
- database:mysql-host
ports:
- "8080:80"
depends_on:
- "database"
environment:
- MYSQL_DB=bugs
- MYSQL_USER=root
- MYSQL_PWD=somepassword
- URLBASE=http://some.site.com/
- [email protected]
- [email protected]
- SMTP_PASSWORD=anotherpassword
- [email protected]

database:
restart: always
image: mysql:5.5
environment:
- MYSQL_ROOT_PASSWORD=somepassword
```