1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 16:28:40 +00:00
dockerfiles/mantisbt/README.md

30 lines
474 B
Markdown
Raw Normal View History

2015-05-18 09:08:49 +00:00
`MantisBT` is an open source issue tracker that provides
a delicate balance between simplicity and power.
2015-05-06 07:42:45 +00:00
## docker-compose.yml
```
mantisbt:
image: vimagick/mantisbt
ports:
2015-05-18 09:08:49 +00:00
- "8989:80"
2015-05-06 07:42:45 +00:00
links:
- db:mysql
restart: always
db:
2015-05-18 08:57:30 +00:00
image: mysql
2015-05-06 07:42:45 +00:00
environment:
2015-05-12 08:49:35 +00:00
- MYSQL_ROOT_PASSWORD=root
2015-05-06 07:42:45 +00:00
- MYSQL_DATABASE=bugtracker
restart: always
```
2015-05-18 08:57:30 +00:00
## setup
```
2015-05-18 09:08:49 +00:00
$ firefox http://localhost:8989/admin/install.php
2015-05-18 08:57:30 +00:00
>>> username: administrator
>>> password: root
```