Sign inSign up

amedeozottola/mantisbt

By amedeozottola

โ€ขUpdated over 8 years ago

Dockerfile con l'installazione di MantisBT ver. 2.11.1

Image
0

339

amedeozottola/mantisbt repository overview

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.

โ docker-compose.yml

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

โ Installazione

$ sudo docker-compose up -d

Tag summary

Content type

Image

Digest

Size

192.3 MB

Last updated

over 8 years ago

docker pull amedeozottola/mantisbt