sh "rm *.conf"

sh "cp ./nginx-config/${PROTOCOL}/* /apps-data"
This commit is contained in:
Artur 2024-10-06 20:31:17 +02:00
parent ffffe97460
commit 678dd880b6
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@ pipeline {
script{ script{
def nxinx_build ="docker compose --file deploy-this/deploy-dc.yml up --detach " def nxinx_build ="docker compose --file deploy-this/deploy-dc.yml up --detach "
sh(nxinx_build); sh(nxinx_build);
sh "rm *.conf"
sh "cp ./nginx-config/${PROTOCOL}/* /apps-data" sh "cp ./nginx-config/${PROTOCOL}/* /apps-data"
} }
} }