2018年7月15日日曜日

PortainerでMantis Bug Tracker2.15とMariaDBのスタックを作成する

Mantis Bug Trackerは、PHP製のバグ追跡・課題管理サーバです。Portainerで簡単にwebブラウザからMantis Bug Tracker2.15とMariaDBのスタックを作成する事ができます。

〇Mantis Bug Trackerの画面

デフォルトユーザ/パスワードはadministrator/rootです。

〇構築方法
1.Portainer画面横のImagesをクリックして、Image list画面からBuild a new imageボタンをクリック


2.Build image画面nameフィールドにmantisbt:2.15を入力


3.Web editorのテキストエリアに以下を貼り付け
FROM alpine:3.7
WORKDIR /
RUN  apk update \
  && apk add --no-cache apache2 php7-apache2 php7-mysqli php7-pdo php7-pdo_mysql php7-intl php7-mcrypt php7-mbstring php7-session php7-curl php7-json php7-xml php7-zip php7-tokenizer php7-ctype php7-gd php7-xmlwriter php7-xmlreader php7-dom php7-iconv php7-simplexml php7-fileinfo openssl openrc unzip \
  && rm -rf /var/cache/apk/* \
  && wget https://sourceforge.net/projects/mantisbt/files/mantis-stable/2.15.0/mantisbt-2.15.0.tar.gz \
  && tar xvfz mantisbt-2.15.0.tar.gz \
  && rm -f mantisbt-2.15.0.tar.gz \
  && mkdir -p /opt \
  && mv mantisbt-2.15.0 /opt/mantisbt \
  && chown -R apache:apache /opt/mantisbt \
  && ln -s  /opt/mantisbt /var/www/localhost/htdocs \
  && mkdir -p /run/apache2 \
  && mkdir -p /var/mantisbt \
  && chown -R apache:apache /var/mantisbt
EXPOSE 80
VOLUME ["/var/mantisbt","/opt/mantisbt"]
CMD ["/usr/sbin/httpd", "-D", "FOREGROUND"]

貼り付け後、build the image ボタンをクリックします。

4.画面横のStacksをクリック後、Stacks list画面でAdd a stackボタンをクリックします


5.Create stack画面で、Nameフィールドにmantisbt-stack、Web editorに以下を張り付ける
version: "3"
services:
  mantisbt:
    image: mantisbt:2.15
    container_name: "mantisbt"
    volumes:
      - "mantisbt-data:/var/mantisbt"
      - "mantisbt-opt:/opt/mantisbt"
    ports:
      - "13980:80"
    depends_on:
      - mantisbtdb
  mantisbtdb:
    image: mariadb:10.3
    command: mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
    container_name: "mantisbt-db"
    ports:
      - "13906:3306"
    volumes:
      - "mantisbtdbdb-data:/var/lib/mysql"
    environment:
        MYSQL_DATABASE: mantisbt
        MYSQL_ROOT_PASSWORD: mantisbt
volumes:
  mantisbtdbdb-data:
    driver: local
  mantisbt-data:
    driver: local
  mantisbt-opt:
    driver: local



貼り付け後、deploy stackボタンをクリックします。

6.ブラウザからhttp://<Dockerホスト名>:13980/mantisbt/にアクセスする
Installer Optionsで以下の項目を入力する
Type of Database: MySQL Improved
Hostname (for Database Server): mantisbtdb
Username (for Database): root
Password (for Database): mantisbt
Database name (for Database): mantisbt



○関連情報
・Mantis Bug Trackerに関する他の記事はこちらを参照してください。

・Portainerに関する他の記事はこちらを参照してください。

0 件のコメント:

コメントを投稿