Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Docker-compose_install_centos7.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

# Author----Kazeem
# Author----YVES
#Date-------Nov-02-2022
#Description---Script that will install Docker-compose on Centos7

Expand Down
13 changes: 13 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
pipeline {
agent any

stages{
stage("create zip file"){
steps {

sh'zip middlewasreScript${BUILD_NUMBER}.zip * --exclude Jenkinsfile'

}
}
}
}