apps-data for all = nginx + jars

This commit is contained in:
Artur 2024-10-03 19:07:14 +02:00
parent 66d098410b
commit db3df2d9ef
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ services:
volumes:
# Nginx configuration
- apps-data/nginx-config:/etc/nginx/conf.d
- apps-data:/etc/nginx/conf.d
# Lets encrypt for https

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/nginx-config"
sh "cp ./nginx-config/http /apps-data"
}
}
}