cp nginx-config/${PROTOCOL}/*.conf /apps-data"

This commit is contained in:
Artur 2024-10-06 20:40:02 +02:00
parent 366cfd76af
commit dbb18c57de
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ pipeline {
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 -f /apps-data/*.conf" sh "rm -f /apps-data/*.conf"
sh "cp ./nginx-config/${PROTOCOL}/* /apps-data" sh "cp nginx-config/${PROTOCOL}/*.conf /apps-data"
} }
} }
} }