[📝] Jenkins 구축
All checks were successful
STEIN_WEB_Back/pipeline/head This commit looks good

This commit is contained in:
김선규 2024-07-11 17:25:13 +09:00
parent 233fdfaada
commit d1ae9d7018
2 changed files with 12 additions and 0 deletions

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
.DS_Store
/Dockerfile
/docker-compose.yml

10
Jenkinsfile vendored Executable file
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('stage 1') {
steps {
echo "Hello world"
}
}
}
}