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 1 year has passed since last update.

Jenkinsの環境構築手順

Last updated at Posted at 2023-10-22

仕事でjenkinsを使うことがあったのですが、初めて触るため
練習しておこうと、dockerでjenkins環境を立ててました。
その時の、構築メモです。

  1. Dockerイメージの取得:
    JenkinsのDockerイメージをDocker Hubから取得します。

    docker pull jenkins/jenkins:lts
    
    
  2. docker-compose.yml ファイルの作成:
    docker-compose.ymlファイルを作成し、以下の内容をコピー&ペーストします。

    version: '3.7'
    services:
      jenkins:
        image: jenkins/jenkins:lts
        ports:
          - "8080:8080"
          - "50000:50000"
        volumes:
          - jenkins_home:/var/jenkins_home
    volumes:
      jenkins_home:
    
    
  3. Dockerコンテナの起動:

    docker compose up -d
    
    
  4. Jenkinsのセットアップ:
    Webブラウザを開き、http://localhost:8080にアクセスします。初回アクセス時には、アンロックコードが必要になります。コードはコンテナのログから取得できます。

    docker logs [コンテナ名またはコンテナID]
    
    
  5. プラグインのインストール:
    必要に応じて、Jenkinsのプラグインをインストールします。

  6. ジョブの作成と実行
    Jenkins上でジョブを作成し、必要に応じて実行します。

以上がJenkinsの環境構築手順です。詳細な手順は参考リンクをご覧ください。

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?