added full path for podman compose file
Some checks failed
DEV-234/pipeline/head There was a failure building this commit

This commit is contained in:
greenamber676 2025-01-09 20:54:26 -05:00
parent 61897d914d
commit 59a7f17ae9

2
Jenkinsfile vendored
View File

@ -39,6 +39,7 @@ pipeline {
// Run tests using Docker Compose // Run tests using Docker Compose
sh """ sh """
#!/bin/bash #!/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
""" """
} }
@ -51,6 +52,7 @@ pipeline {
// Deploy using Docker Compose // Deploy using Docker Compose
sh """ sh """
#!/bin/bash #!/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
""" """
} }