Dockerfile con l'installazione di MantisBT ver. 2.11.1
339
MantisBT รจ un tool open-source per la gestione di ticket.
Di seguito viene illustrato un docker-compose.yml per configurare un MantisBT comprensivo di database.
mantisbt:
container_name: mantisbt
image: amedeozottola/mantisbt
links:
- mantisbt_db
restart: always
mantisbt_db:
container_name: mantisbt_db
image: mariadb:latest
environment:
- MYSQL_ROOT_PASSWORD=mantisbt_root
- MYSQL_DATABASE=bugtracker
- MYSQL_USER=mantisbt
- MYSQL_PASSWORD=mantisbt
restart: always
$ sudo docker-compose up -d
Content type
Image
Digest
Size
192.3 MB
Last updated
over 8 years ago
docker pull amedeozottola/mantisbt