Sign inSign up

theasp/bugzilla

By theasp

Updated over 7 years ago

Image
0

425

theasp/bugzilla repository overview

docker-bugzilla

docker for bugzilla 5.0.3

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

Tag summary

Content type

Image

Digest

Size

230.9 MB

Last updated

over 7 years ago

docker pull theasp/bugzilla