diff --git a/deploy-this/deploy-dc.yml b/deploy-this/deploy-dc.yml index 89739fc..86ed625 100644 --- a/deploy-this/deploy-dc.yml +++ b/deploy-this/deploy-dc.yml @@ -14,13 +14,13 @@ services: entrypoint: - java - -jar - - /apps_data/angular-services-0.0.1.jar + - /apps-data/angular-services-0.0.1.jar ports: - 8800:8800/tcp # exposing port for www volumes: - - apps_data:/apps_data + - apps-data:/apps-data deploy: resources: diff --git a/deploy-this/deploy.jenkinsfile b/deploy-this/deploy.jenkinsfile index 8fc6f75..f83f5c9 100644 --- a/deploy-this/deploy.jenkinsfile +++ b/deploy-this/deploy.jenkinsfile @@ -43,7 +43,7 @@ pipeline{ sh "mvn clean package" - sh "cp ./target/*.jar /apps_data/" + sh "cp ./target/*.jar /apps-data/" sh "docker compose -f deploy-this/deploy-dc.yml up --detach"