Skip to content

Commit b6317ac

Browse files
committed
Need to specify specific build host label
1 parent 6ddded8 commit b6317ac

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Diff for: Jenkinsfile

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
pipeline {
2-
agent any
2+
agent {
3+
label 'X86-64-MULTI'
4+
}
35
// Configuration for the variables used for this specific repo
46
environment {
57
EXT_GIT_BRANCH = 'master'
@@ -9,8 +11,8 @@ pipeline {
911
LS_USER = 'linuxserver'
1012
LS_REPO = 'docker-bookstack'
1113
CONTAINER_NAME = 'bookstack'
12-
DOCKERHUB_IMAGE = 'lspipelive/bookstack'
13-
DEV_DOCKERHUB_IMAGE = 'lspipetest/bookstack'
14+
DOCKERHUB_IMAGE = 'linuxserver/bookstack'
15+
DEV_DOCKERHUB_IMAGE = 'lsiodev/bookstack'
1416
PR_DOCKERHUB_IMAGE = 'lspipepr/bookstack'
1517
BUILDS_DISCORD = credentials('build_webhook_url')
1618
GITHUB_TOKEN = credentials('498b4638-2d02-4ce5-832d-8a57d01d97ab')

0 commit comments

Comments
 (0)