From a51fc8be0a796666a54b2817755b5bd3ee768ff3 Mon Sep 17 00:00:00 2001 From: greenamber676 Date: Thu, 9 Jan 2025 20:57:57 -0500 Subject: [PATCH] typo --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ff8fd37..151bffc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -40,7 +40,7 @@ pipeline { sh """ #!/bin/bash echo 'testing' - podman-compose -f /home/v/projects/p00003/podman-compose.yml --dry-run up + podman-compose -f ../podman-compose.yml --dry-run up """ } } @@ -53,7 +53,7 @@ pipeline { sh """ #!/bin/bash echo 'deploying' - podman-compose -f /home/v/projects/p00003/podman-compose.yml up -d + podman-compose -f ../podman-compose.yml up -d """ } } @@ -65,7 +65,7 @@ pipeline { // Clean up Docker containers and images sh """ #!/bin/bash - podman-compose -f /home/v/projects/p00003/podman-compose.yml --dry-run up + podman-compose -f ../podman-compose.yml --dry-run up """ } }