0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

DockerでRedmine環境を構築する

Posted at

はじめに

Dockerを使えば手軽にRedmineをセットアップし、すぐに利用できる状態にできます。ローカル環境で使えるようにするまでを書いておきます。

前提条件:

  • dockerコマンドが使用できること

コンテナのプル

Redmineの公式Dockerイメージを使用します。以下のコマンドで最新のイメージを取得します。

docker pull redmine:latest

コンテナ起動

docker run -d --name my-redmine -p 3000:3000 redmine:latest

上記のコマンドで、Dockerコンテナがバックグラウンドで実行され、ポート3000でRedmineにアクセスできるようになります。my-redmineという名前のコンテナを作成して起動しています。

Redmineへアクセス!

ウェブブラウザを開き、 http://localhost:3000 にアクセスします。 初期状態のRedmineでは、デフォルトで管理者アカウントが設定されており、以下でログインすることができます。

ユーザー名(Username): admin
パスワード(Password): admin

ログインすると管理者アカウントのパスワード変更を求められるので任意のパスワードを設定します。管理者アカウントは、ユーザーの承認や設定の変更を行うことができます。

あとはご自由にどうぞ。

コンテナの停止

docker stop my-redmine

my-redmine はコンテナの名前です。自分が指定した名前に置き換えてください。

次回の起動方法

コンテナを停止した後、再び起動するには以下のコマンドを使用します。

docker start my-redmine

コンテナの削除

コンテナを完全に削除する場合は、停止後に以下のコマンドを実行します。

docker rm my-redmine
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?