1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-02-03 13:21:35 +02:00
This commit is contained in:
kev 2015-05-06 15:42:45 +08:00
parent 6589e3844b
commit 85dafb9867

22
mantisbt/README.md Normal file
View File

@ -0,0 +1,22 @@
MantisBT is an open source issue tracker that provides a delicate balance between simplicity and power.
## docker-compose.yml
```
mantisbt:
image: vimagick/mantisbt
ports:
- "80:80"
links:
- db:mysql
restart: always
db:
image: mariadb
environment:
- MYSQL_USERNAME=root
- MYSQL_PASSWORD=root
- MYSQL_DATABASE=bugtracker
restart: always
```