mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-21 13:23:02 +01:00
378 B
378 B
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