Skip to content

Commit

Permalink
Merge pull request #4049 from NginxProxyManager/cve-fixes
Browse files Browse the repository at this point in the history
CVE fixes and other API work
  • Loading branch information
jc21 authored Oct 11, 2024
2 parents 63d06da + d21403c commit aacb230
Show file tree
Hide file tree
Showing 150 changed files with 6,334 additions and 4,607 deletions.
12 changes: 8 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ pipeline {
sh 'sed -i -E "s/(version-)[0-9]+\\.[0-9]+\\.[0-9]+(-green)/\\1${BUILD_VERSION}\\2/" README.md'
}
}
stage('Docker Login') {
steps {
withCredentials([usernamePassword(credentialsId: 'jc21-dockerhub', passwordVariable: 'dpass', usernameVariable: 'duser')]) {
sh 'docker login -u "${duser}" -p "${dpass}"'
}
}
}
}
}
stage('Builds') {
Expand Down Expand Up @@ -157,10 +164,7 @@ pipeline {
}
}
steps {
withCredentials([usernamePassword(credentialsId: 'jc21-dockerhub', passwordVariable: 'dpass', usernameVariable: 'duser')]) {
sh 'docker login -u "${duser}" -p "${dpass}"'
sh "./scripts/buildx --push ${buildxPushTags}"
}
sh "./scripts/buildx --push ${buildxPushTags}"
}
}
stage('Docs / Comment') {
Expand Down
8 changes: 0 additions & 8 deletions backend/.vscode/settings.json

This file was deleted.

2 changes: 1 addition & 1 deletion backend/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ app.use(function (req, res, next) {
});

app.use(require('./lib/express/jwt')());
app.use('/', require('./routes/api/main'));
app.use('/', require('./routes/main'));

// production error handler
// no stacktraces leaked to user
Expand Down
Loading

0 comments on commit aacb230

Please sign in to comment.