Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ryanwoodsmall/f206a7d26dae78925cef930e760d4242 to your computer and use it in GitHub Desktop.
Save ryanwoodsmall/f206a7d26dae78925cef930e760d4242 to your computer and use it in GitHub Desktop.
jenkins-bitbucket_docker-compose.yml
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