store local copy :)
This commit is contained in:
parent
5fea0741bf
commit
70fc8d9a2b
@ -49,14 +49,19 @@ CMD ["/bin/sh", "-c", "icecast -c \\"\${CONFIG_FILE}\\""]
|
|||||||
container ('kaniko') {
|
container ('kaniko') {
|
||||||
script {
|
script {
|
||||||
declarativeFunctions.buildContainerMultipleDestinations(
|
declarativeFunctions.buildContainerMultipleDestinations(
|
||||||
dockerFile: dockerFile,
|
dockerFile: readFile(file: "${workspace}/Dockerfile"),
|
||||||
repositoryAccess: [
|
repositoryAccess: [
|
||||||
|
[
|
||||||
|
repository: repository,
|
||||||
|
credentials: repositoryCreds
|
||||||
|
],
|
||||||
[
|
[
|
||||||
repository: "registry.hub.docker.com",
|
repository: "registry.hub.docker.com",
|
||||||
credentials: "dockerhub-repository-creds"
|
credentials: "dockerhub-repository-creds"
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
destination: [
|
destination: [
|
||||||
|
"${repository}/library/icecast:latest",
|
||||||
"registry.hub.docker.com/thespider/icecast:latest",
|
"registry.hub.docker.com/thespider/icecast:latest",
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
@ -45,19 +45,24 @@ RUN apt-get update && \\
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage ('Build & Push') {
|
stage ('Build & Push') {
|
||||||
steps {
|
steps {
|
||||||
container ('kaniko') {
|
container ('kaniko') {
|
||||||
script {
|
script {
|
||||||
declarativeFunctions.buildContainerMultipleDestinations(
|
declarativeFunctions.buildContainerMultipleDestinations(
|
||||||
dockerFile: dockerFile,
|
dockerFile: readFile(file: "${workspace}/Dockerfile"),
|
||||||
repositoryAccess: [
|
repositoryAccess: [
|
||||||
|
[
|
||||||
|
repository: repository,
|
||||||
|
credentials: repositoryCreds
|
||||||
|
],
|
||||||
[
|
[
|
||||||
repository: "registry.hub.docker.com",
|
repository: "registry.hub.docker.com",
|
||||||
credentials: "dockerhub-repository-creds"
|
credentials: "dockerhub-repository-creds"
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
destination: [
|
destination: [
|
||||||
|
"${repository}/library/php-mysqli:latest",
|
||||||
"registry.hub.docker.com/thespider/php-mysqli:latest",
|
"registry.hub.docker.com/thespider/php-mysqli:latest",
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user