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 """
#!/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
"""
}
}