Skip to content

Commit

Permalink
removed redundante docker- from image name
Browse files Browse the repository at this point in the history
  • Loading branch information
toschoch committed Dec 16, 2018
1 parent c05d6af commit 295281a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ node('docker') {
usernamePassword(credentialsId: 'docker public',
usernameVariable: 'USERNAME',
passwordVariable: 'PASSWORD')]) {
def builtImage = docker.build("${USERNAME}/docker-alpine-oracle-jdk-arm",".")
def builtImage = docker.build("${USERNAME}/alpine-oracle-jdk-arm",".")
}
}

Expand All @@ -44,7 +44,7 @@ node('docker') {
usernamePassword(credentialsId: 'docker public',
usernameVariable: 'USERNAME',
passwordVariable: 'PASSWORD')]) {
def builtImage = docker.build("${USERNAME}/docker-alpine-oracle-jdk-arm",".")
def builtImage = docker.build("${USERNAME}/alpine-oracle-jdk-arm",".")
builtImage.push()
}
}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ git clone [email protected]:toschoch/docker-alpine-oracle-jdk-arm.git
```
build the docker image
```
docker build . -t docker-alpine-oracle-jdk-arm
docker build . -t alpine-oracle-jdk-arm
```

Example
-------

run a container of the image
```
docker run -v ... -p ... docker-alpine-oracle-jdk-arm
docker run -v ... -p ... alpine-oracle-jdk-arm
```

0 comments on commit 295281a

Please sign in to comment.