Created
April 9, 2020 04:04
-
-
Save ryanwoodsmall/f206a7d26dae78925cef930e760d4242 to your computer and use it in GitHub Desktop.
jenkins-bitbucket_docker-compose.yml
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 characters
version: "3" | |
services: | |
jenkins: | |
image: jenkins/jenkins:lts | |
restart: always | |
ports: | |
- "18080:8080" | |
volumes: | |
- jenkins:/var/jenkins_home | |
bitbucket: | |
image: atlassian/bitbucket-server:7.1 | |
restart: always | |
ports: | |
- "17990:7990" | |
- "17999:7999" | |
volumes: | |
- bitbucket:/var/atlassian/application-data/bitbucket | |
volumes: | |
jenkins: | |
bitbucket: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment