mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2025-04-15 22:02:42 +03:00
03\06\2019
This commit is contained in:
parent
b751dc74dd
commit
bd8dc26bf0
@ -14,10 +14,15 @@
|
|||||||
| [](https://deb.sury.org/) | [](https://github.com/EpicMorg/docker-scripts/tree/master/websites) | [](https://hub.docker.com/r/epicmorg/websites/ ) | php 7.3 custom build by [Ondrej Sury](https://launchpad.net/~ondrej). Component of container above.
|
| [](https://deb.sury.org/) | [](https://github.com/EpicMorg/docker-scripts/tree/master/websites) | [](https://hub.docker.com/r/epicmorg/websites/ ) | php 7.3 custom build by [Ondrej Sury](https://launchpad.net/~ondrej). Component of container above.
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
* 03/06/2019
|
||||||
|
* bitbucket `6.1.0`
|
||||||
|
* jira `8.0.2`
|
||||||
|
* migrationg from alpine to debian contaiers:
|
||||||
|
* jira
|
||||||
* 03/04/2019
|
* 03/04/2019
|
||||||
* nginx-full -> nginx-extras `1.15.9`
|
* nginx-full -> nginx-extras `1.15.9`
|
||||||
* bitbucket `6.0.1`
|
* bitbucket `6.0.1`
|
||||||
* jira `8.0.1`
|
* jira `8.0.1` (bugs!)
|
||||||
* various script fixes
|
* various script fixes
|
||||||
* 02/19/2019
|
* 02/19/2019
|
||||||
* jira `8.0.0`
|
* jira `8.0.0`
|
||||||
|
@ -29,7 +29,7 @@ RUN chmod +x /tini
|
|||||||
|
|
||||||
COPY entrypoint.sh /entrypoint.sh
|
COPY entrypoint.sh /entrypoint.sh
|
||||||
|
|
||||||
ARG BITBUCKET_VERSION=6.0.1
|
ARG BITBUCKET_VERSION=6.1.0
|
||||||
ARG DOWNLOAD_URL=https://product-downloads.atlassian.com/software/stash/downloads/atlassian-bitbucket-${BITBUCKET_VERSION}.tar.gz
|
ARG DOWNLOAD_URL=https://product-downloads.atlassian.com/software/stash/downloads/atlassian-bitbucket-${BITBUCKET_VERSION}.tar.gz
|
||||||
|
|
||||||
RUN mkdir -p ${BITBUCKET_INSTALL_DIR} \
|
RUN mkdir -p ${BITBUCKET_INSTALL_DIR} \
|
||||||
|
@ -1,8 +1,22 @@
|
|||||||
FROM anapsix/alpine-java:8_jdk
|
#FROM anapsix/alpine-java:8_jdk
|
||||||
|
FROM debian:buster
|
||||||
|
|
||||||
MAINTAINER Atlassian Jira Server Team
|
MAINTAINER Atlassian Jira Server Team
|
||||||
|
|
||||||
ENV RUN_USER daemon
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
ENV RUN_GROUP daemon
|
|
||||||
|
#editing sources list
|
||||||
|
RUN rm /etc/apt/sources.list
|
||||||
|
COPY sources.list /etc/apt/sources.list
|
||||||
|
#COPY locale.gen /etc/locale.gen
|
||||||
|
|
||||||
|
# fix errors
|
||||||
|
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
|
||||||
|
RUN apt-get update && apt-get install -y --allow-unauthenticated ca-certificates gnupg sudo apt-transport-https lsb-release apt-utils openjdk-8-jdk openjdk-8-jre locales console-cyrillic wget curl bash procps openssl perl ttf-dejavu tini util-linux
|
||||||
|
|
||||||
|
|
||||||
|
ENV RUN_USER bin
|
||||||
|
ENV RUN_GROUP bin
|
||||||
|
|
||||||
# https://confluence.atlassian.com/display/JSERVERM/Important+directories+and+files
|
# https://confluence.atlassian.com/display/JSERVERM/Important+directories+and+files
|
||||||
ENV JIRA_HOME /var/atlassian/application-data/jira
|
ENV JIRA_HOME /var/atlassian/application-data/jira
|
||||||
@ -16,14 +30,15 @@ EXPOSE 8080
|
|||||||
WORKDIR $JIRA_HOME
|
WORKDIR $JIRA_HOME
|
||||||
|
|
||||||
CMD ["/entrypoint.sh", "-fg"]
|
CMD ["/entrypoint.sh", "-fg"]
|
||||||
ENTRYPOINT ["/sbin/tini", "--"]
|
ENTRYPOINT ["/usr/bin/tini", "--"]
|
||||||
|
|
||||||
|
#installing utils
|
||||||
|
RUN apt-get update && apt-get install -y --allow-unauthenticated htop mc tmux iftop cmatrix iputils-ping cmatrix-xfont lsof lynx
|
||||||
|
|
||||||
RUN apk add --no-cache wget curl openssh bash procps openssl perl ttf-dejavu tini util-linux mc htop \
|
|
||||||
&& rm -rf /var/lib/{apt,dpkg,cache,log}/ /tmp/* /var/tmp/*
|
|
||||||
|
|
||||||
COPY entrypoint.sh /entrypoint.sh
|
COPY entrypoint.sh /entrypoint.sh
|
||||||
|
|
||||||
ARG JIRA_VERSION=8.0.1
|
ARG JIRA_VERSION=8.0.2
|
||||||
ARG DOWNLOAD_URL=https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-${JIRA_VERSION}.tar.gz
|
ARG DOWNLOAD_URL=https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-${JIRA_VERSION}.tar.gz
|
||||||
|
|
||||||
COPY . /tmp
|
COPY . /tmp
|
||||||
|
Loading…
x
Reference in New Issue
Block a user