Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump bitbucket version and prune docker-compose #1

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM adoptopenjdk/openjdk8:alpine
MAINTAINER Steffen Bleul <[email protected]>

ARG BITBUCKET_VERSION=6.8.2
ARG BITBUCKET_VERSION=7.2.3
# permissions
ARG CONTAINER_UID=1000
ARG CONTAINER_GID=1000
Expand Down
9 changes: 3 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,19 @@ version: '3'

services:
bitbucket:
image: blacklabelops/bitbucket
depends_on:
- postgres_bitbucket
image: registry.gitlab.com/notch8/bbfops/bitbucket:${TAG}
build: .
networks:
- bitbucketnet
volumes:
- bitbucketdata:/var/atlassian/bitbucket
ports:
- '80:7990'
- '7990:7990'
environment:
- 'BITBUCKET_PROXY_NAME='
- 'BITBUCKET_PROXY_PORT='
- 'BITBUCKET_PROXY_SCHEME='
- 'BITBUCKET_DELAYED_START='
- 'DOCKER_WAIT_HOST=postgres_bitbucket'
- 'DOCKER_WAIT_PORT=5432'
labels:
com.blacklabelops.description: "Atlassian Bitbucket"
com.blacklabelops.service: "bitbucket"
Expand Down