typo
Some checks failed
DEV-234/pipeline/head There was a failure building this commit

This commit is contained in:
greenamber676 2025-01-09 20:57:57 -05:00
parent af1958c974
commit a51fc8be0a

6
Jenkinsfile vendored
View File

@ -40,7 +40,7 @@ pipeline {
sh """ sh """
#!/bin/bash #!/bin/bash
echo 'testing' 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 """ sh """
#!/bin/bash #!/bin/bash
echo 'deploying' 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 // Clean up Docker containers and images
sh """ sh """
#!/bin/bash #!/bin/bash
podman-compose -f /home/v/projects/p00003/podman-compose.yml --dry-run up podman-compose -f ../podman-compose.yml --dry-run up
""" """
} }
} }