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?

More than 5 years have passed since last update.

プラグインインストール済のJenkins 構築 Docker編 その2

Posted at

プラグインインストール済のJenkins 構築 Docker編 その1の続きです。

セットアップウィザードを無効にしましょう

環境変数JAVA_OPSに"-Djenkins.install.runSetupWizard=false"を設定するようにDockerfileを修正。

Dockerfile
FROM jenkins:2.19.4
ENV JAVA_OPTS="-Djenkins.install.runSetupWizard=false"

Dockerfileからdocker imageを作成

# docker build -t myjenkins:3 .

コンテナの起動

# docker run -it -d --name myjenkins-3 -p 8080:8080 myjenkins:3

http://localhost:8080/ にアクセスしたら、セットアップウィザードを起動せず、jenkinsが使えるようになりました。

image.png

ただし、まだPluginが空です。
image.png

次回予告

Plugin Installの自動化
を実施したい。

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?