Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carlossg/jenkins-mysql-docker
A Docker image for a Jenkins server configured to use a MySQL db container
https://github.com/carlossg/jenkins-mysql-docker
Last synced: about 1 month ago
JSON representation
A Docker image for a Jenkins server configured to use a MySQL db container
- Host: GitHub
- URL: https://github.com/carlossg/jenkins-mysql-docker
- Owner: carlossg
- License: apache-2.0
- Created: 2014-09-30T08:47:38.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-01T08:05:52.000Z (about 10 years ago)
- Last Synced: 2023-04-15T01:27:15.958Z (over 1 year ago)
- Language: Shell
- Size: 117 KB
- Stars: 0
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
docker-jenkins-mysql
==========================Docker image for Jenkins, with mysql plugin installed.
Based on the [official image](https://registry.hub.docker.com/_/jenkins/).# Running
Run [mysql](https://registry.hub.docker.com/_/mysql/) in a separate container, then run Jenkins linked to it.
# Run mysql
docker run --name some-mysql -e MYSQL_ROOT_PASSWORD=mysecretpassword -d mysql
# Run jenkins
docker run --name jenkins -e JENKINS_DB_PASSWORD=jenkins --link some-mysql:mysql -p 8080:8080 -p 37727:37727 csanchez/jenkins-swarm-mysql# Building
docker build -t csanchez/jenkins-mysql .