jira-latest fix

This commit is contained in:
stam 2021-05-19 03:14:47 +03:00
parent 03195d06b5
commit 98fec6e9d9
5 changed files with 34 additions and 8 deletions

View File

@ -0,0 +1,3 @@
RELEASE=8.17.0
DOWNLOAD_URL=https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-8.17.0.tar.gz

View File

@ -5,8 +5,11 @@ ARG DEBIAN_FRONTEND=noninteractive
################################################################## ##################################################################
# ARGuments # ARGuments
################################################################## ##################################################################
ARG JIRA_VERSION=8.17.0
ARG DOWNLOAD_URL=https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-${JIRA_VERSION}.tar.gz #configured by dockerfile / .ENV
ARG RELEASE
ARG DOWNLOAD_URL
################################################################## ##################################################################
# Setup # Setup

View File

@ -5,8 +5,11 @@ ARG DEBIAN_FRONTEND=noninteractive
################################################################## ##################################################################
# ARGuments # ARGuments
################################################################## ##################################################################
ARG JIRA_VERSION=8.17.0
ARG DOWNLOAD_URL=https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-${JIRA_VERSION}.tar.gz #configured by dockerfile / .ENV
ARG RELEASE
ARG DOWNLOAD_URL
################################################################## ##################################################################
# Setup # Setup

View File

@ -1,5 +1,5 @@
all: jr all: app
jr: app:
docker build --compress -t epicmorg/jira . docker-compose build --compress
docker push epicmorg/jira docker-compose push

View File

@ -0,0 +1,17 @@
version: '3.9'
services:
app:
image: "epicmorg/jira:latest"
build:
context: .
args:
RELEASE: ${RELEASE}
DOWNLOAD_URL: ${DOWNLOAD_URL}
app-jdk11:
image: "epicmorg/jira:latest-jdk11"
build:
context: .
dockerfile: Dockerfile.jdk11
args:
RELEASE: ${RELEASE}
DOWNLOAD_URL: ${DOWNLOAD_URL}