1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00: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

@ -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
```