-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
248 changed files
with
8,804 additions
and
32 deletions.
There are no files selected for viewing
File renamed without changes.
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
FROM epicmorg/debian:bullseye-jdk11 | ||
LABEL maintainer="Atlassian Jira Server Team; EpicMorg DevTeam, developer@epicm.org" | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
################################################################## | ||
# ARGuments | ||
################################################################## | ||
ARG BITBUCKET_VERSION=8.3.2 | ||
ARG DOWNLOAD_URL=https://product-downloads.atlassian.com/software/stash/downloads/atlassian-bitbucket-${BITBUCKET_VERSION}.tar.gz | ||
|
||
################################################################## | ||
# Setup | ||
################################################################## | ||
ENV RUN_USER daemon | ||
ENV RUN_GROUP daemon | ||
|
||
# https://confluence.atlassian.com/display/BitbucketServer/Bitbucket+Server+home+directory | ||
ENV BITBUCKET_HOME /var/atlassian/application-data/bitbucket | ||
ENV BITBUCKET_INSTALL_DIR /opt/atlassian/bitbucket | ||
|
||
VOLUME ["${BITBUCKET_HOME}"] | ||
WORKDIR $BITBUCKET_HOME | ||
|
||
# Expose HTTP and SSH ports | ||
EXPOSE 7990 | ||
EXPOSE 7999 | ||
|
||
################################################################## | ||
# Installing | ||
################################################################## | ||
RUN mkdir -p ${BITBUCKET_INSTALL_DIR} \ | ||
&& curl -L ${DOWNLOAD_URL} | tar -xz --strip-components=1 -C "${BITBUCKET_INSTALL_DIR}" \ | ||
&& chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR}/ \ | ||
&& sed -i -e 's/^# umask/umask/' ${BITBUCKET_INSTALL_DIR}/bin/_start-webapp.sh && \ | ||
update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 && \ | ||
apt clean -y && \ | ||
apt autoclean -y && \ | ||
rm -rfv /var/lib/apt/lists/* && \ | ||
rm -rfv /var/cache/apt/archives/*.deb | ||
|
||
CMD ["/entrypoint.sh", "-fg"] | ||
ENTRYPOINT ["/usr/bin/tini", "--"] | ||
COPY entrypoint.sh /entrypoint.sh | ||
COPY . /tmp |
45 changes: 45 additions & 0 deletions
45
linux/ecosystem/atlassian/bitbucket/8/8.3.2/Dockerfile.jdk11
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
FROM epicmorg/debian:bullseye-jdk11 | ||
LABEL maintainer="Atlassian Jira Server Team; EpicMorg DevTeam, developer@epicm.org" | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
################################################################## | ||
# ARGuments | ||
################################################################## | ||
ARG BITBUCKET_VERSION=8.3.2 | ||
ARG DOWNLOAD_URL=https://product-downloads.atlassian.com/software/stash/downloads/atlassian-bitbucket-${BITBUCKET_VERSION}.tar.gz | ||
|
||
################################################################## | ||
# Setup | ||
################################################################## | ||
ENV RUN_USER daemon | ||
ENV RUN_GROUP daemon | ||
|
||
# https://confluence.atlassian.com/display/BitbucketServer/Bitbucket+Server+home+directory | ||
ENV BITBUCKET_HOME /var/atlassian/application-data/bitbucket | ||
ENV BITBUCKET_INSTALL_DIR /opt/atlassian/bitbucket | ||
|
||
VOLUME ["${BITBUCKET_HOME}"] | ||
WORKDIR $BITBUCKET_HOME | ||
|
||
# Expose HTTP and SSH ports | ||
EXPOSE 7990 | ||
EXPOSE 7999 | ||
|
||
################################################################## | ||
# Installing | ||
################################################################## | ||
RUN mkdir -p ${BITBUCKET_INSTALL_DIR} \ | ||
&& curl -L ${DOWNLOAD_URL} | tar -xz --strip-components=1 -C "${BITBUCKET_INSTALL_DIR}" \ | ||
&& chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR}/ \ | ||
&& sed -i -e 's/^# umask/umask/' ${BITBUCKET_INSTALL_DIR}/bin/_start-webapp.sh && \ | ||
|
||
update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 && \ | ||
apt clean -y && \ | ||
apt autoclean -y && \ | ||
rm -rfv /var/lib/apt/lists/* && \ | ||
rm -rfv /var/cache/apt/archives/*.deb | ||
|
||
CMD ["/entrypoint.sh", "-fg"] | ||
ENTRYPOINT ["/usr/bin/tini", "--"] | ||
COPY entrypoint.sh /entrypoint.sh | ||
COPY . /tmp |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
all: app | ||
|
||
app: | ||
make build | ||
make deploy | ||
make clean | ||
|
||
build: | ||
docker-compose build --compress --parallel --progress plain | ||
|
||
deploy: | ||
docker-compose push | ||
|
||
clean: | ||
docker container prune -f | ||
docker image prune -f | ||
docker network prune -f | ||
docker volume prune -f | ||
docker system prune -af |
Oops, something went wrong.