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" } } }