Last active
January 27, 2024 20:07
-
-
Save wiccy46/69dae20ce95abea1b5d73cfda4c5a45c to your computer and use it in GitHub Desktop.
[jenkins_basic] Jenkins basics #jenkins
This file contains 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 characters
docker-compose.yml | |
services: | |
jenkins: | |
container_name: jenkins | |
image: jenkins/jenkins | |
ports: | |
- "8080:8080" | |
volumes: | |
- "$PWD/jenkins_home:/var/jenkins_home" | |
networks: | |
- net |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment