Last active
January 23, 2023 23:18
-
-
Save michalkorzawski/86b2a2abeb0d4f321fff977af0e95167 to your computer and use it in GitHub Desktop.
Revisions
-
michalkorzawski revised this gist
Jan 23, 2023 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,8 @@ version: '3.8' services: jenkins: environment: - JAVA_OPTS=-Dhudson.plugins.git.GitSCM.ALLOW_LOCAL_CHECKOUT=true image: jenkins/jenkins:jdk11 ports: - 8080:8080 -
michalkorzawski created this gist
Jan 23, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ version: '3.8' services: jenkins: image: jenkins/jenkins:jdk11 ports: - 8080:8080 volumes: - jenkins_home:/var/jenkins_home - ../your_app:/var/jenkins_home/your_app:ro volumes: jenkins_home: