{"id":20717781,"url":"https://github.com/rishavconsolelog21/jenkins-2121","last_synced_at":"2026-04-18T21:04:24.634Z","repository":{"id":252533210,"uuid":"840720275","full_name":"rishavConsoleLog21/jenkins-2121","owner":"rishavConsoleLog21","description":"Repo for Jenkins CI/CD pipeline","archived":false,"fork":false,"pushed_at":"2024-08-10T13:41:00.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-11T07:34:03.241Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rishavConsoleLog21.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-10T13:34:25.000Z","updated_at":"2024-08-10T13:41:03.000Z","dependencies_parsed_at":"2024-08-10T15:07:56.114Z","dependency_job_id":null,"html_url":"https://github.com/rishavConsoleLog21/jenkins-2121","commit_stats":null,"previous_names":["rishavconsolelog21/jenkins-2121"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rishavConsoleLog21/jenkins-2121","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishavConsoleLog21%2Fjenkins-2121","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishavConsoleLog21%2Fjenkins-2121/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishavConsoleLog21%2Fjenkins-2121/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishavConsoleLog21%2Fjenkins-2121/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rishavConsoleLog21","download_url":"https://codeload.github.com/rishavConsoleLog21/jenkins-2121/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rishavConsoleLog21%2Fjenkins-2121/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31984558,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"ssl_error","status_checked_at":"2026-04-18T20:23:29.375Z","response_time":103,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-17T03:10:15.688Z","updated_at":"2026-04-18T21:04:24.594Z","avatar_url":"https://github.com/rishavConsoleLog21.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Jenkins BlueOcean Setup with Docker\n\nThis guide provides step-by-step instructions for setting up Jenkins BlueOcean using Docker. \n\n## YouTube Link\nFor a full 1-hour course on Jenkins, watch on YouTube: [Jenkins Course](https://www.youtube.com/watch?v=6YZvp2GwT0A)\n\n## Installation\n\n### 1. Build the Jenkins BlueOcean Docker Image\n\nYou can build the Jenkins BlueOcean Docker image using the following command:\n\n```bash\ndocker build -t myjenkins-blueocean:2.414.2 .\n```\n\n**Note:** If you encounter any issues building the image, you can pull a pre-built version from my registry (version `2.332.3-1`):\n\n```bash\ndocker pull devopsjourney1/jenkins-blueocean:2.332.3-1\ndocker tag devopsjourney1/jenkins-blueocean:2.332.3-1 myjenkins-blueocean:2.332.3-1\n```\n\n### 2. Create the Network `jenkins`\n\nCreate a Docker network named `jenkins` using the command:\n\n```bash\ndocker network create jenkins\n```\n\n### 3. Run the Jenkins BlueOcean Container\n\n#### MacOS / Linux\n\nTo run the Jenkins BlueOcean container on MacOS or Linux, use the following command:\n\n```bash\ndocker run --name jenkins-blueocean --restart=on-failure --detach \\\n  --network jenkins --env DOCKER_HOST=tcp://docker:2376 \\\n  --env DOCKER_CERT_PATH=/certs/client --env DOCKER_TLS_VERIFY=1 \\\n  --publish 8080:8080 --publish 50000:50000 \\\n  --volume jenkins-data:/var/jenkins_home \\\n  --volume jenkins-docker-certs:/certs/client:ro \\\n  myjenkins-blueocean:2.414.2\n```\n\n#### Windows\n\nTo run the Jenkins BlueOcean container on Windows, use the following command:\n\n```powershell\ndocker run --name jenkins-blueocean --restart=on-failure --detach `\n  --network jenkins --env DOCKER_HOST=tcp://docker:2376 `\n  --env DOCKER_CERT_PATH=/certs/client --env DOCKER_TLS_VERIFY=1 `\n  --volume jenkins-data:/var/jenkins_home `\n  --volume jenkins-docker-certs:/certs/client:ro `\n  --publish 8080:8080 --publish 50000:50000 myjenkins-blueocean:2.414.2\n```\n\n### 4. Get the Initial Admin Password\n\nRetrieve the initial admin password for Jenkins using the following command:\n\n```bash\ndocker exec jenkins-blueocean cat /var/jenkins_home/secrets/initialAdminPassword\n```\n\n### 5. Connect to Jenkins\n\nOnce the container is running, you can connect to Jenkins by navigating to:\n\n[https://localhost:8080/](https://localhost:8080/)\n\n## Installation Reference\n\nFor more details, refer to the official Jenkins Docker installation guide: [Jenkins Docker Installation](https://www.jenkins.io/doc/book/installing/docker/)\n```\n\nThis `README.md` file provides clear instructions for setting up Jenkins BlueOcean using Docker, including how to handle potential issues and where to find additional resources.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frishavconsolelog21%2Fjenkins-2121","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frishavconsolelog21%2Fjenkins-2121","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frishavconsolelog21%2Fjenkins-2121/lists"}