Skip to content

dirkvandelindt/jenkins-to-salesforce

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

jenkins-to-salesforce

Simple jenkins image with Force.com Migrations tool.

Please report any issues or comments here: https://github.com/anyei/jenkins-to-salesforce/issues

Features

Tools needed to make deployments to salesforce.com included in this image:

plugins installed

Besides the plugins which comes with the jenkins, the following are some additional plugins included in this image: git git-client promoted-builds scm-api token-macro mailer parameterized-trigger

Usage

This is the basic command to start jenkins:

$ docker run -p 8080:8080 anyei/jenkins-to-salesforce

This will store all jenkins data and configuration in /var/jenkins_home. You can make that a persistent volume:

$ docker run --name jenkins-sfdc -p 8080:8080 -v /var/jenkins_home anyei/jenkins-to-salesforce

You can bind volume from host and container: The jenkins user in container (jenkins user - uid 102, same as base jenkins image) must have access to /usr/back/jenkins:

$ docker run -p 8080:8080 -v /usr/back/jenkins:/var/jenkins_home anyei/jenkins-to-salesforce

You can do it all in one command too :

$ docker run --name jenkins-sfdc -p 8080:8080 -p 50000:50000 -v /usr/back/jenkins:/var/jenkins_home -d anyei/jenkins-to-salesforce

Please refer to jenkins official usage for a more complete explanation on the rest of jenkins matter: https://hub.docker.com/_/jenkins/

Public key authentication with git

If you have a jenkins job setup with git plugin, the best way to authenticate against the server where the target repository lives is with a public key. Jenkins runs as jenkins user within the container, therefore you'll need jenkin's user public key.

Get inside the running container (we are assuming the containers name is jenkins-sfdc):

$ docker exec -it jenkins-sfdc /bin/bash 

Then generate the rsa key pair :

$ ssh-keygen -t rsa 

Follow the instructions, leaving everything in blank and just hitting enter key will be enough for the public and private key to get generated. Assuming you did so, the public key should be located in the following file /var/jenkins_home/.ssh/id_rsa.pub. You can use that key later to authenticate to github, bitbucket or any other servers accepting this type of authentication. For more information and additional example go to Github wiki page.

Documentation

You can find more about jenkins image in the official docker repository.

You can find good example how to setup jenkins to deploy to saleforce in Github wiki page

Issues

Let's keep this in Github.

Contributing

You are invited to contribute, let's keep in touch in Github

About

Jenkins with Force.com Migration Tool.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published