mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2025-01-12 14:47:55 +03:00
jira-latest fix
This commit is contained in:
parent
03195d06b5
commit
98fec6e9d9
3
linux/atlassian/jira/latest/.env
Normal file
3
linux/atlassian/jira/latest/.env
Normal 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
|
@ -5,8 +5,11 @@ ARG DEBIAN_FRONTEND=noninteractive
|
||||
##################################################################
|
||||
# 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
|
||||
|
@ -5,8 +5,11 @@ ARG DEBIAN_FRONTEND=noninteractive
|
||||
##################################################################
|
||||
# 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
|
||||
|
@ -1,5 +1,5 @@
|
||||
all: jr
|
||||
all: app
|
||||
|
||||
jr:
|
||||
docker build --compress -t epicmorg/jira .
|
||||
docker push epicmorg/jira
|
||||
app:
|
||||
docker-compose build --compress
|
||||
docker-compose push
|
||||
|
17
linux/atlassian/jira/latest/docker-compose.yml
Normal file
17
linux/atlassian/jira/latest/docker-compose.yml
Normal 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}
|
Loading…
x
Reference in New Issue
Block a user