using registry subdomain for packages

This commit is contained in:
Andy Pack 2023-05-14 19:08:33 +01:00
parent 429e64256e
commit f06b5b202a
Signed by: sarsoo
GPG Key ID: A55BA3536A5E0ED7

View File

@ -6,7 +6,7 @@ pipeline {
when { branch 'master' }
steps {
script {
docker.withRegistry('https://git.sarsoo.xyz', 'git-registry-creds') {
docker.withRegistry('https://registry.sarsoo.xyz', 'git-registry-creds') {
docker.build("sarsoo/draught:latest").push()
}