2015-05-06 09:42:45 +02:00
|
|
|
MantisBT is an open source issue tracker that provides a delicate balance between simplicity and power.
|
|
|
|
|
2015-05-12 10:49:35 +02:00
|
|
|
WARNING: This is still a work in progress, a successful connection has not been made.
|
|
|
|
|
2015-05-06 09:42:45 +02:00
|
|
|
|
|
|
|
## docker-compose.yml
|
|
|
|
|
|
|
|
```
|
|
|
|
mantisbt:
|
|
|
|
image: vimagick/mantisbt
|
|
|
|
ports:
|
|
|
|
- "80:80"
|
|
|
|
links:
|
|
|
|
- db:mysql
|
|
|
|
restart: always
|
|
|
|
|
|
|
|
db:
|
2015-05-18 10:57:30 +02:00
|
|
|
image: mysql
|
2015-05-06 09:42:45 +02:00
|
|
|
environment:
|
2015-05-12 10:49:35 +02:00
|
|
|
- MYSQL_ROOT_PASSWORD=root
|
2015-05-06 09:42:45 +02:00
|
|
|
- MYSQL_DATABASE=bugtracker
|
|
|
|
restart: always
|
|
|
|
```
|
2015-05-18 10:57:30 +02:00
|
|
|
|
|
|
|
## setup
|
|
|
|
|
|
|
|
```
|
|
|
|
$ docker exec -it mantisbt_mantisbt_1 bash
|
|
|
|
>>> echo 'date.timezone = "Asia/Shanghai"' > /usr/local/etc/php/php.ini
|
|
|
|
>>> exit
|
|
|
|
$ firefox http://localhost/admin/install.php
|
|
|
|
>>> username: administrator
|
|
|
|
>>> password: root
|
|
|
|
```
|