From db3df2d9ef69ab4956dec4d95fc584a6097be1d9 Mon Sep 17 00:00:00 2001 From: Artur Date: Thu, 3 Oct 2024 19:07:14 +0200 Subject: [PATCH] apps-data for all = nginx + jars --- deploy-this/deploy-dc.yml | 2 +- deploy-this/start-proxy.jenkinsfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy-this/deploy-dc.yml b/deploy-this/deploy-dc.yml index 167dbca..4af919b 100644 --- a/deploy-this/deploy-dc.yml +++ b/deploy-this/deploy-dc.yml @@ -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 diff --git a/deploy-this/start-proxy.jenkinsfile b/deploy-this/start-proxy.jenkinsfile index 5c948d8..a5d1f44 100755 --- a/deploy-this/start-proxy.jenkinsfile +++ b/deploy-this/start-proxy.jenkinsfile @@ -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" } } }