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でJenkinsを構築する備忘録

Last updated at Posted at 2025-04-11
# Docker imageをpull
docker pull jenkins/jenkins:lts-jdk21

# 起動
docker run -p 8080:8080 -p 50000:50000 --restart=on-failure jenkins/jenkins:lts-jdk21

起動すると以下メッセージ

*************************************************************
*************************************************************
*************************************************************

Jenkins initial setup is required. An admin user has been created and a password generated.
Please use the following password to proceed to installation:

※※※※ ここにパスワード ※※※※
4de94f5a2312450db31e4ffc4426287a

This may also be found at: /var/jenkins_home/secrets/initialAdminPassword

*************************************************************
*************************************************************
*************************************************************

起動後以下にアクセス

http://localhost:8080/

アクセスすると以下の画面が表示される
ここに先ほどメモしたパスワードを入力して[continue]を押下
image.png

押下後以下の画面
スクリーンショット 2025-04-11 9.36.16.png

左を選択(右を選ぶとプラグインを選択できる)
スクリーンショット 2025-04-11 9.38.15.png

インストール後自動的に以下の画面へ遷移
スクリーンショット 2025-04-11 9.40.18.png

入力後、Save and continueを押下すると以下画面へ
スクリーンショット 2025-04-11 9.42.52.png

以上
スクリーンショット 2025-04-11 9.43.58.png

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?