-
-
Save chancez/720b0b0e7d2bb69563720f6df4dfd688 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -x | |
exec sudo rkt \ | |
run \ | |
--insecure-options=image,ondisk \ | |
--inherit-env \ | |
--volume dns,kind=host,source=/etc/resolv.conf \ | |
--mount volume=dns,target=/etc/resolv.conf \ | |
--volume jenkins,kind=host,source=/opt/jenkins,readOnly=false \ | |
--mount volume=jenkins,target=/opt/jenkins \ | |
--volume etc-ssl-certs,kind=host,source=/etc/ssl/certs,readOnly=true \ | |
--mount volume=etc-ssl-certs,target=/etc/ssl/certs \ | |
--volume usr-share-certs,kind=host,source=/usr/share/ca-certificates,readOnly=true \ | |
--mount volume=usr-share-certs,target=/usr/share/ca-certificates \ | |
--volume docker,kind=host,source=/usr/bin/docker,readOnly=true \ | |
--mount volume=docker,target=/usr/bin/docker \ | |
--volume var-run,kind=host,source=/var/run \ | |
--mount volume=var-run,target=/var/run \ | |
--volume run,kind=host,source=/run,readOnly=false \ | |
--mount volume=run,target=/run \ | |
--volume tmp,kind=host,source=/tmp,readOnly=false \ | |
--mount volume=tmp,target=/tmp \ | |
docker://quay.io/ecnahc515/jenkins-on-coreos:latest \ | |
-- "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment