https://github.com/froque/docker-bugzilla
docker for bugzilla
https://github.com/froque/docker-bugzilla
Last synced: 5 months ago
JSON representation
docker for bugzilla
- Host: GitHub
- URL: https://github.com/froque/docker-bugzilla
- Owner: froque
- Created: 2016-05-09T14:46:05.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-22T16:26:43.000Z (about 10 years ago)
- Last Synced: 2025-04-05T14:43:11.285Z (about 1 year ago)
- Language: Shell
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/
- MAINTAINER=user@example.com
- MAILFROM=someuser@another.com
- SMTP_PASSWORD=anotherpassword
- SMTP_USERNAME=andathird@gmail.com
database:
restart: always
image: mysql:5.5
environment:
- MYSQL_ROOT_PASSWORD=somepassword
```