sh "cp ./nginx-config/** /apps-data"

This commit is contained in:
Artur 2024-10-04 16:56:38 +02:00
parent 0def1524cd
commit f0d2e21767
1 changed files with 1 additions and 1 deletions

View File

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