1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/mantisbt
2015-05-18 18:39:05 +08:00
..
docker-compose.yml update 2015-05-18 17:52:55 +08:00
Dockerfile fix 2015-05-18 17:30:02 +08:00
README.md update doc 2015-05-18 18:39:05 +08:00

MantisBT is an open source issue tracker that provides a delicate balance between simplicity and power.

docker-compose.yml

mantisbt:
  image: vimagick/mantisbt:latest
  ports:
    - "8989:80"
  links:
    - mysql
  restart: always

mysql:
  image: mysql:latest
  environment:
    - MYSQL_ROOT_PASSWORD=root
    - MYSQL_DATABASE=bugtracker
  restart: always

You can use mariadb instead of mysql.

setup

$ firefox http://localhost:8989/admin/install.php
>>> username: administrator
>>> password: root
==================================================================================
Installation Options
==================================================================================
Type of Database                                        MySQL/MySQLi
Hostname (for Database Server)                          mysql
Username (for Database)                                 root
Password (for Database)                                 root
Database name (for Database)                            bugtracker
Admin Username (to create Database if required)         root
Admin Password (to create Database if required)         root
Print SQL Queries instead of Writing to the Database    [ ]
Attempt Installation                                    [Install/Upgrade Database]
==================================================================================

todo

  • support curl
  • config smtp
  • ...