Giter Club home page Giter Club logo

eea.docker.jenkins.master's Introduction

Jenkins master ready to run Docker image (Jenkins Swarm Plugin)

Docker images for master based on Jenkins Swarm Plugin.

This images is generic, thus you can obviously re-use it within your non-related EEA projects.

Supported tags and respective Dockerfile links

See older versions

Changes

Base docker image

Source code

Installation

  1. Install Docker.

  2. Install Docker Compose.

Create new image based on production container

Update Dockerfile

Update Dockerfile - set latest version or the version that can be seen on the HTML interface in the right down corner ( ex. Jenkins ver. 2.89.4 )

Update plugins.txt

In Jenkins interface, go to Manage, then ThinBackup. Click Backup Now. Enter in shell on the container, in /var/jenkins_home/backup/jenkins ( directory is set in thinBackup Configuration) , extract and copy the contents of the installedPlugins.xml file to the Dockerfile location.

Using Rancher-cli:

$ rancher exec jenkins-master/master bash
$ cd /var/jenkins_home/backup/jenkins/FULL-<<DATE>>
$ cat installedPlugins.xml

Run:

$ python plugins.py

This will generate plugins.txt file.

Usage

$ docker run -p 8080:8080 eeacms/jenkins-master

And now you have a running Jenkins at http://localhost:8080

Advanced usage

Start Jenkins with SSL support:

Create a self-signed test SSL certificate.

$ keytool -genkey -keyalg RSA -alias selfsigned -keystore /etc/keystore.jks -storepass ToPSecRet321 -dname "cn=localhost"

Launch Jenkins

$ docker run -p 8080:8080 \
             -v /etc/keystore.jks:/etc/keystore.jks \
         eeacms/jenkins-master \
             --httpPort=-1 \
             --httpsPort=8080 \
             --httpsKeyStore=/etc/keystore.jks \
             --httpsKeyStorePassword=ToPSecRet321

or via environment variables:

$ docker run -p 8080:8080 \
             -v /etc/keystore.jks:/etc/keystore.jks \
             -e JENKINS_OPTS="--httpPort=-1 --httpsPort=8080 --httpsKeyStore=/etc/keystore.jks --httpsKeyStorePassword=ToPSecRet321" \
         eeacms/jenkins-master

See --help for more options:

$ docker run --rm eeacms/jenkins-master --help

See also EEA Jenkins master-slave orchestration for a complete guide on running a Jenkins master-slave stack.

Supported environment variables

  • JAVA_OPTS You might need to customize the JVM running Jenkins master, typically to pass system properties or tweak heap memory settings. Use JAVA_OPTS environment variable for this purpose.
  • JENKINS_OPTS Start Jenkins with custom options. Useful if you want to start Jenkins on https for example.

Copyright and license

The Initial Owner of the Original Code is European Environment Agency (EEA). All Rights Reserved.

The Original Code is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

Funding

European Environment Agency (EU)

eea.docker.jenkins.master's People

Contributors

avoinea avatar valentinab25 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.