https://github.com/rhjensen79/docker-jenkins
https://github.com/rhjensen79/docker-jenkins
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rhjensen79/docker-jenkins
- Owner: rhjensen79
- Created: 2025-03-06T19:15:27.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-03-06T20:19:21.000Z (3 months ago)
- Last Synced: 2025-03-06T20:28:50.287Z (3 months ago)
- Language: Dockerfile
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Docker-Jenkins
A Jenkins docker image, with docker tools build in.
Primary usecase, is as a schelduler for homelab etc.
It's not ment for production.Example docker compose file
```yaml
services:
jenkins:
image: ghcr.io/rhjensen79/docker-jenkins:latest
ports:
- 8080:8080
volumes:
- jenkins_home:/var/jenkins_home
- /var/run/docker.sock:/var/run/docker.sock
restart: always
volumes:
jenkins_home:
```