Dockerコンテナ上でRedmineをセットアップする

DDD
リリース: 2024-09-19 10:30:30
オリジナル
818 人が閲覧しました

Setup Redmine on Docker Container

Redmine は、柔軟なオープンソースのプロジェクト管理および問題追跡 Web アプリケーションです。プロジェクトの管理、バグの追跡、タスクと期限の処理に広く使用されています。 Ruby on Rails を使用して開発された Redmine は高度にカスタマイズ可能で、チームのコラボレーションとプロジェクトの組織化のための幅広い機能をサポートしています。

Redmine は、その柔軟性、カスタマイズ性、オープンソースの性質により、商用プロジェクト管理ツールの代替として人気があります。

この記事では、データベース サーバー、mysql、リバース プロキシとして nginx とともに Docker コンテナ上に Redmine をセットアップします。

Dockerをインストールする

AWS EC2 でホストされている ubuntu サーバーと、docker 公式からのインストール ガイドを使用します。

# Add Docker's official GPG key:
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc

# Add the repository to Apt sources:
echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
  $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
ログイン後にコピー

最新バージョンの docker と docker compose を使用します。

sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
ログイン後にコピー

OK、docker がインストールされました。次に、ユーザー (ubuntu) が sudo なしで直接 docker にアクセスできるように設定する必要があります。

sudo groupadd docker
sudo usermod -aG docker $USER
ログイン後にコピー

その後、ログアウトしてサーバーに再度ログインします。 Docker の準備ができました!
以下のコマンドを使用して、サーバーの再起動時に Docker コンテナを起動できます。

sudo systemctl enable docker.service
sudo systemctl enable containerd.service
ログイン後にコピー

今のところは docker コンテナで十分です。

Docker Compose ファイルを作成する

Docker compose ファイルを 1 つ作成します。

nano docker-compose.yaml
ログイン後にコピー

この yaml コードを貼り付けます。

version: '3.1'

services:
  nginx:
    # we use the latest of nginx as base
    image: nginx:latest
    restart: always
    # we expose port 80 and 443 to the public as our reverse proxy
    ports:
      - "80:80"
      - "443:443"
    volumes:
      # we link volume from host for nginx configuration
      - './nginx.conf:/etc/nginx/conf.d/nginx.conf'
      # we link volume from host for nginx certs
      - './certs:/etc/nginx/certs'
      # we link also timezone from the host
      - '/etc/localtime:/etc/localtime:ro'
      - '/etc/timezone:/etc/timezone:ro'
    depends_on:
      # we will wait until server redmine is ready
      - redmine
  redmine:
    # we use redmine from dockerhub as base
    image: redmine
    restart: always
    volumes:
      # we link redmine data to our local storage, so it will persistent when
      # the service redmine restarted
      - 'redmine_data:/usr/src/redmine/files'
      # we link redmine plugin also from the host
      - '/home/bkn/redmine_plugins:/usr/src/redmine/plugins'
      # we link also timezone from the host
      - '/etc/localtime:/etc/localtime:ro'
      - '/etc/timezone:/etc/timezone:ro'
    # we don't expose port on this service because nginx service will do
    # default port redmine expose internally is 3000
    #ports:
      #- 3000:3000
      #- 444:3000
    environment:
      # we create some env for redmine
      REDMINE_DB_MYSQL: db
      REDMINE_DB_PORT: 3306
      REDMINE_DB_DATABASE: redmine_db
      REDMINE_DB_USERNAME: redmine
      REDMINE_DB_PASSWORD: my_p@ssword
      REDMINE_SECRET_KEY_BASE: G75eddsecretkey
    # we will wait until db service is ready
    depends_on:
      - db
  db:
    # we use mysql server for redmine database
    image: mysql:8.0
    restart: always
    volumes:
      # we also link the database storage with volume we created below
      - 'mysql_data:/var/lib/mysql'
    environment:
      # we create some env for mysql
      MYSQL_USER: redmine
      MYSQL_PASSWORD: my_p@ssword
      MYSQL_RANDOM_ROOT_PASSWORD: 1
      MYSQL_ROOT_PASSWORD: JRFFHT534rth4u3!@#
      MYSQL_DATABASE: redmine_db

volumes:
  # we create two volume used by redmine and our database
  mysql_data:
    driver: local
  redmine_data:
    driver: local
ログイン後にコピー

次に、docker-compose ファイルと同じフォルダーに nginx 構成ファイルを作成します

nano nginx/nginx.conf
ログイン後にコピー
server {
        listen 80;
        server_name proman.withenri.tech;
        location / {
            proxy_pass http://henri_redmine_1:3000;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
        }
    }
server {
        listen 443 ssl;
        server_name proman.withenri.tech;
        ssl_certificate /etc/nginx/certs/withenri.tech_chained.crt;
        ssl_certificate_key /etc/nginx/certs/withenri.tech.key;
        location / {
            proxy_pass http://henri_redmine_1:3000;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
        }
    }
ログイン後にコピー

そして、certs というフォルダーを作成し、そこに証明書を配置します。

コンテナの作成

コマンドを使用して docker compose ファイルを実行しましょう

docker-compose up -d
ログイン後にコピー

この docker compose ファイルを実行すると、ネットワークが自動的に作成され、その 1 つのネットワーク内で 3 つのサービス (nginx、redmine、db) がリンクされます。

次のコマンドでコンテナを確認できます:

docker ps -a
ログイン後にコピー

次に、HTTPS 接続を使用してポート 80 とポート 443 を使用してブラウザで Redmine アプリケーションをテストします。 Redmine アプリケーションへのログインにはユーザー「admin」とパスワード「admin」を使用してください。

この記事は、vps に直接インストールした場合と基本的に同じ結果になります。この記事を参照してください。

この記事がお役に立てば幸いです!

以上がDockerコンテナ上でRedmineをセットアップするの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:dev.to
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート