From 59a7f17ae925289632b8acaf443008a429f61d1f Mon Sep 17 00:00:00 2001 From: greenamber676 Date: Thu, 9 Jan 2025 20:54:26 -0500 Subject: [PATCH] added full path for podman compose file --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 2ad2ef4..c663a0d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -39,6 +39,7 @@ pipeline { // Run tests using Docker Compose sh """ #!/bin/bash + echo 'testing' podman-compose -f /home/v/projects/p00003/podman-compose-yml --dry-run up """ } @@ -51,6 +52,7 @@ pipeline { // Deploy using Docker Compose sh """ #!/bin/bash + echo 'deploying' podman-compose -f /home/v/projects/p00003/podman-compose-yml up -d """ }