Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ https://www.youtube.com/watch?v=6YZvp2GwT0A
# Installation
## Build the Jenkins BlueOcean Docker Image (or pull and use the one I built)
```
docker build -t myjenkins-blueocean:2.414.2 .
docker build -t myjenkins-blueocean:2.462.3 .

#IF you are having problems building the image yourself, you can pull from my registry (It is version 2.332.3-1 though, the original from the video)

Expand All @@ -27,7 +27,7 @@ docker run --name jenkins-blueocean --restart=on-failure --detach \
--publish 8080:8080 --publish 50000:50000 \
--volume jenkins-data:/var/jenkins_home \
--volume jenkins-docker-certs:/certs/client:ro \
myjenkins-blueocean:2.414.2
myjenkins-blueocean:2.462.3
```

### Windows
Expand All @@ -37,7 +37,7 @@ docker run --name jenkins-blueocean --restart=on-failure --detach `
--env DOCKER_CERT_PATH=/certs/client --env DOCKER_TLS_VERIFY=1 `
--volume jenkins-data:/var/jenkins_home `
--volume jenkins-docker-certs:/certs/client:ro `
--publish 8080:8080 --publish 50000:50000 myjenkins-blueocean:2.414.2
--publish 8080:8080 --publish 50000:50000 myjenkins-blueocean:2.462.3
```


Expand Down