Created
April 9, 2019 20:39
-
-
Save djbender/da97b4546e256e5675eecfa4c018f086 to your computer and use it in GitHub Desktop.
bitnami's jenkins config ready for use with dinghy
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
version: '2' | |
services: | |
jenkins: | |
image: 'bitnami/jenkins:2' | |
ports: | |
- '8080:8080' | |
- '8443:8443' | |
- '50000:50000' | |
volumes: | |
- 'jenkins_data:/bitnami' | |
environment: | |
VIRTUAL_HOST: jenkins.docker | |
VIRTUAL_PORT: 8080 | |
JENKINS_USERNAME: user # default username | |
JENKINS_PASSWORD: bitnami # default password | |
volumes: | |
jenkins_data: | |
driver: local |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
download with:
and then configure docker-compose.yml to have a custom username/password and you're off to the races:
website is hosted at http://jenkins.docker/
watch the logs to verify it's finished initialization, it's not instant.