docker: use nginx internal port

This commit is contained in:
Trianta 2024-09-17 19:09:54 -05:00
parent e0c09898ae
commit 98149cae07
2 changed files with 2 additions and 2 deletions

View File

@ -12,4 +12,4 @@ COPY . .
RUN npm run build
EXPOSE 3466
EXPOSE 80

2
Jenkinsfile vendored
View File

@ -15,7 +15,7 @@ pipeline {
}
stage('Deploy') {
steps {
sh 'docker run -d -p 3466:3466 test.trianta.dev'
sh 'docker run -d -p 3466:80 test.trianta.dev'
}
}
}