2019-03-06 17:33:52 +03:00
|
|
|
FROM debian:buster
|
2018-09-18 13:44:55 +03:00
|
|
|
MAINTAINER Atlassian Jira Server Team
|
|
|
|
|
2019-03-06 19:54:00 +03:00
|
|
|
ENV RUN_USER daemon
|
|
|
|
ENV RUN_GROUP daemon
|
|
|
|
|
|
|
|
# https://confluence.atlassian.com/display/JSERVERM/Important+directories+and+files
|
|
|
|
ENV JIRA_HOME /var/atlassian/application-data/jira
|
|
|
|
ENV JIRA_INSTALL_DIR /opt/atlassian/jira
|
|
|
|
|
2019-03-06 17:33:52 +03:00
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
|
|
|
|
#editing sources list
|
|
|
|
RUN rm /etc/apt/sources.list
|
|
|
|
COPY sources.list /etc/apt/sources.list
|
2019-03-07 01:14:20 +03:00
|
|
|
COPY locale.gen /etc/locale.gen
|
2019-03-06 17:33:52 +03:00
|
|
|
|
2019-03-06 19:54:00 +03:00
|
|
|
#installing utils
|
|
|
|
# url: missing
|
2019-03-06 17:33:52 +03:00
|
|
|
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
|
2019-03-07 01:06:06 +03:00
|
|
|
RUN apt-get update && apt-get install -y --allow-unauthenticated gnupg2
|
2019-04-17 14:00:25 +03:00
|
|
|
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A66C5D02
|
|
|
|
RUN echo 'deb https://rpardini.github.io/adoptopenjdk-deb-installer stable main' > /etc/apt/sources.list.d/rpardini-aoj.list
|
|
|
|
RUN
|
|
|
|
RUN apt-get update && apt-get install -y --allow-unauthenticated htop mc tmux iftop cmatrix iputils-ping adoptopenjdk-8-installer cmatrix-xfont lsof lynx ca-certificates gnupg sudo apt-transport-https lsb-release apt-utils locales console-cyrillic wget curl bash procps openssl perl ttf-dejavu tini util-linux fontconfig
|
2018-09-18 13:44:55 +03:00
|
|
|
|
|
|
|
VOLUME ["${JIRA_HOME}"]
|
2019-03-06 19:54:00 +03:00
|
|
|
WORKDIR $JIRA_HOME
|
2018-09-18 13:44:55 +03:00
|
|
|
|
2018-09-18 21:32:07 +03:00
|
|
|
# Expose HTTP port
|
2018-09-18 15:29:01 +03:00
|
|
|
EXPOSE 8080
|
2018-09-18 13:44:55 +03:00
|
|
|
|
|
|
|
|
|
|
|
CMD ["/entrypoint.sh", "-fg"]
|
2019-03-06 17:33:52 +03:00
|
|
|
ENTRYPOINT ["/usr/bin/tini", "--"]
|
|
|
|
|
2018-09-18 13:44:55 +03:00
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
|
2019-03-06 19:54:00 +03:00
|
|
|
#After install fixes
|
|
|
|
RUN localedef en_US.UTF-8 -i en_US -f UTF-8
|
|
|
|
RUN update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8
|
|
|
|
RUN apt update
|
|
|
|
RUN apt upgrade -y
|
|
|
|
RUN apt dist-upgrade -y
|
|
|
|
RUN apt-get clean autoclean
|
|
|
|
RUN apt-get autoremove -y
|
|
|
|
RUN rm -rf /var/lib/apt/lists/*
|
|
|
|
|
2019-04-17 12:41:28 +03:00
|
|
|
ARG JIRA_VERSION=8.1.0
|
2018-09-18 21:32:07 +03:00
|
|
|
ARG DOWNLOAD_URL=https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-${JIRA_VERSION}.tar.gz
|
2018-09-18 13:44:55 +03:00
|
|
|
|
|
|
|
COPY . /tmp
|
|
|
|
|
|
|
|
RUN mkdir -p ${JIRA_INSTALL_DIR} \
|
|
|
|
&& curl -L --silent ${DOWNLOAD_URL} | tar -xz --strip-components=1 -C "$JIRA_INSTALL_DIR" \
|
|
|
|
&& chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ \
|
2018-09-18 21:32:07 +03:00
|
|
|
&& sed -i -e 's/^JVM_SUPPORT_RECOMMENDED_ARGS=""$/: \${JVM_SUPPORT_RECOMMENDED_ARGS:=""}/g' ${JIRA_INSTALL_DIR}/bin/setenv.sh \
|
|
|
|
&& sed -i -e 's/^JVM_\(.*\)_MEMORY="\(.*\)"$/: \${JVM_\1_MEMORY:=\2}/g' ${JIRA_INSTALL_DIR}/bin/setenv.sh \
|
|
|
|
&& sed -i -e 's/grep "java version"/grep -E "(openjdk|java) version"/g' ${JIRA_INSTALL_DIR}/bin/check-java.sh \
|
2018-09-18 17:18:00 +03:00
|
|
|
&& sed -i -e 's/port="8080"/port="8080" secure="${catalinaConnectorSecure}" scheme="${catalinaConnectorScheme}" proxyName="${catalinaConnectorProxyName}" proxyPort="${catalinaConnectorProxyPort}"/' ${JIRA_INSTALL_DIR}/conf/server.xml
|