From af1958c97406eae134715c63a7bb8d1b8c6e0f38 Mon Sep 17 00:00:00 2001 From: greenamber676 Date: Thu, 9 Jan 2025 20:56:05 -0500 Subject: [PATCH] typo --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c663a0d..ff8fd37 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 /home/v/projects/p00003/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 /home/v/projects/p00003/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 /home/v/projects/p00003/podman-compose.yml --dry-run up """ } }