mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2025-08-01 18:11:41 +03:00
[update] jul update pack 1
This commit is contained in:
commit
cee1c6585f
@ -118,6 +118,7 @@ jobs:
|
||||
- {version: '21', path: 'nodejs/node21'}
|
||||
- {version: '22', path: 'nodejs/node22'}
|
||||
- {version: '23', path: 'nodejs/node23'}
|
||||
- {version: '24', path: 'nodejs/node24'}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
|
@ -119,6 +119,7 @@ jobs:
|
||||
- {version: '21', path: 'nodejs/node21'}
|
||||
- {version: '22', path: 'nodejs/node22'}
|
||||
- {version: '23', path: 'nodejs/node23'}
|
||||
- {version: '24', path: 'nodejs/node24'}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
|
@ -121,6 +121,7 @@ jobs:
|
||||
- {version: '21', path: 'nodejs/node21'}
|
||||
- {version: '22', path: 'nodejs/node22'}
|
||||
- {version: '23', path: 'nodejs/node23'}
|
||||
- {version: '24', path: 'nodejs/node24'}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
@ -121,6 +121,7 @@ jobs:
|
||||
- {version: '21', path: 'nodejs/node21'}
|
||||
- {version: '22', path: 'nodejs/node22'}
|
||||
- {version: '23', path: 'nodejs/node23'}
|
||||
- {version: '24', path: 'nodejs/node24'}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
@ -547,7 +547,7 @@ jobs:
|
||||
max_attempts: 15
|
||||
command: make pip
|
||||
|
||||
- name: Build and Deploy ninjam
|
||||
- name: Build and Deploy TelegrabBot Quotes
|
||||
uses: nick-fields/retry@v3
|
||||
with:
|
||||
retry_wait_seconds: 45
|
||||
@ -555,6 +555,59 @@ jobs:
|
||||
max_attempts: 15
|
||||
command: cd linux/ecosystem/telegram/bot/quotes && make build && make deploy
|
||||
|
||||
##################################################################################
|
||||
|
||||
build-steamcmd-image:
|
||||
name: EpicMorg EcoSystem SteamCMD Image
|
||||
runs-on: [ ubuntu-24.04 ]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
clean: true
|
||||
show-progress: true
|
||||
submodules: true
|
||||
|
||||
- name: Log into docker registry
|
||||
uses: nick-fields/retry@v3
|
||||
with:
|
||||
retry_wait_seconds: 45
|
||||
timeout_minutes: 600
|
||||
max_attempts: 15
|
||||
command: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin
|
||||
|
||||
- name: Log into Quay.IO registry
|
||||
uses: nick-fields/retry@v3
|
||||
with:
|
||||
retry_wait_seconds: 45
|
||||
timeout_minutes: 600
|
||||
max_attempts: 15
|
||||
command: echo "${{ secrets.QUAY_SERVER_KEY }}" | docker login -u "${{ secrets.QUAY_SERVER_LOGIN }}" --password-stdin "${{ secrets.QUAY_SERVER_URL }}"
|
||||
|
||||
- name: Check buildah
|
||||
uses: nick-fields/retry@v3
|
||||
with:
|
||||
retry_wait_seconds: 45
|
||||
timeout_minutes: 600
|
||||
max_attempts: 15
|
||||
command: buildah --version
|
||||
|
||||
- name: Test Make
|
||||
uses: nick-fields/retry@v3
|
||||
with:
|
||||
retry_wait_seconds: 45
|
||||
timeout_minutes: 600
|
||||
max_attempts: 15
|
||||
command: make
|
||||
|
||||
- name: Build and Deploy SteamCMD
|
||||
uses: nick-fields/retry@v3
|
||||
with:
|
||||
retry_wait_seconds: 45
|
||||
timeout_minutes: 600
|
||||
max_attempts: 15
|
||||
command: cd linux/ecosystem/steamcmd && make build && make deploy
|
||||
|
||||
##################################################################################
|
||||
|
||||
- name: Cleanup
|
||||
|
@ -12,7 +12,7 @@ jobs:
|
||||
strategy:
|
||||
matrix:
|
||||
version: [
|
||||
'1.26', '1.27', '1.28',
|
||||
'1.26', '1.27', '1.28', '1.29',
|
||||
]
|
||||
|
||||
steps:
|
||||
|
@ -1,6 +1,11 @@
|
||||
# Changelog
|
||||
|
||||
## 2025
|
||||
* `jul`
|
||||
* updated `python`, `node`, `cmake`, `openssl`, `flutter`, `go`, `nginx`, `steamcmd`
|
||||
* fixed buildah builds
|
||||
* fixed `opentracker` builds
|
||||
* reverted to `dockerhub` as main `mirror`
|
||||
* `may`-`jun`
|
||||
* buildah squash to service images
|
||||
* `apr`
|
||||
|
@ -1,14 +1,14 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/bitbucket:{{ item }}"
|
||||
image: "epicmorg/bitbucket:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk17:
|
||||
image: "quay.io/epicmorg/bitbucket:{{ item }}-jdk17"
|
||||
image: "epicmorg/bitbucket:{{ item }}-jdk17"
|
||||
build:
|
||||
context: .
|
||||
app-jdk21:
|
||||
image: "quay.io/epicmorg/bitbucket:{{ item }}-jdk21"
|
||||
image: "epicmorg/bitbucket:{{ item }}-jdk21"
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.jdk21
|
||||
|
@ -1,9 +1,9 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/bitbucket:{{ item }}"
|
||||
image: "epicmorg/bitbucket:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk17:
|
||||
image: "quay.io/epicmorg/bitbucket:{{ item }}-jdk17"
|
||||
image: "epicmorg/bitbucket:{{ item }}-jdk17"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,9 +1,9 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/bitbucket:{{ item }}"
|
||||
image: "epicmorg/bitbucket:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk7:
|
||||
image: "quay.io/epicmorg/bitbucket:{{ item }}-jdk7"
|
||||
image: "epicmorg/bitbucket:{{ item }}-jdk7"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,19 +1,19 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/bitbucket:{{ item }}"
|
||||
image: "epicmorg/bitbucket:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk8:
|
||||
image: "quay.io/epicmorg/bitbucket:{{ item }}-jdk8"
|
||||
image: "epicmorg/bitbucket:{{ item }}-jdk8"
|
||||
build:
|
||||
context: .
|
||||
app-jdk11:
|
||||
image: "quay.io/epicmorg/bitbucket:{{ item }}-jdk11"
|
||||
image: "epicmorg/bitbucket:{{ item }}-jdk11"
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.jdk11
|
||||
app-jdk17:
|
||||
image: "quay.io/epicmorg/bitbucket:{{ item }}-jdk17"
|
||||
image: "epicmorg/bitbucket:{{ item }}-jdk17"
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.jdk17
|
||||
|
@ -1,14 +1,14 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/bitbucket:{{ item }}"
|
||||
image: "epicmorg/bitbucket:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk8:
|
||||
image: "quay.io/epicmorg/bitbucket:{{ item }}-jdk8"
|
||||
image: "epicmorg/bitbucket:{{ item }}-jdk8"
|
||||
build:
|
||||
context: .
|
||||
app-jdk11:
|
||||
image: "quay.io/epicmorg/bitbucket:{{ item }}-jdk11"
|
||||
image: "epicmorg/bitbucket:{{ item }}-jdk11"
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.jdk11
|
||||
|
@ -1,9 +1,9 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/bitbucket:{{ item }}"
|
||||
image: "epicmorg/bitbucket:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk8:
|
||||
image: "quay.io/epicmorg/bitbucket:{{ item }}-jdk8"
|
||||
image: "epicmorg/bitbucket:{{ item }}-jdk8"
|
||||
build:
|
||||
context: .
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk11
|
||||
FROM epicmorg/debian:bookworm-jdk11
|
||||
LABEL maintainer="Atlassian Bitbucket Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -29,7 +29,20 @@ EXPOSE 7999
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \
|
||||
tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \
|
||||
chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR}
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk17
|
||||
FROM epicmorg/debian:bookworm-jdk17
|
||||
LABEL maintainer="Atlassian Bitbucket Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -29,7 +29,20 @@ EXPOSE 7999
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \
|
||||
tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \
|
||||
chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR}
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk21
|
||||
FROM epicmorg/debian:bookworm-jdk21
|
||||
LABEL maintainer="Atlassian Bitbucket Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -29,7 +29,20 @@ EXPOSE 7999
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \
|
||||
tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \
|
||||
chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR}
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk8
|
||||
FROM epicmorg/debian:bookworm-jdk8
|
||||
LABEL maintainer="Atlassian Bitbucket Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -29,7 +29,20 @@ EXPOSE 7999
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \
|
||||
tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \
|
||||
chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR}
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk7
|
||||
FROM epicmorg/debian:bookworm-jdk7
|
||||
LABEL maintainer="Atlassian Bitbucket Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -30,7 +30,20 @@ EXPOSE 7999
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \
|
||||
tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \
|
||||
chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR}
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk8
|
||||
FROM epicmorg/debian:bookworm-jdk8
|
||||
LABEL maintainer="Atlassian Bitbucket Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -30,7 +30,20 @@ EXPOSE 7999
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN mkdir -p ${BITBUCKET_INSTALL_DIR} && \
|
||||
tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${BITBUCKET_INSTALL_DIR}" && \
|
||||
chown -R ${RUN_USER}:${RUN_GROUP} ${BITBUCKET_INSTALL_DIR}
|
||||
|
@ -1,14 +1,14 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}"
|
||||
image: "epicmorg/confluence:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk11:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}-jdk11"
|
||||
image: "epicmorg/confluence:{{ item }}-jdk11"
|
||||
build:
|
||||
context: .
|
||||
app-jdk17:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}-jdk17"
|
||||
image: "epicmorg/confluence:{{ item }}-jdk17"
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.jdk17
|
||||
|
@ -1,14 +1,14 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}"
|
||||
image: "epicmorg/confluence:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk17:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}-jdk17"
|
||||
image: "epicmorg/confluence:{{ item }}-jdk17"
|
||||
build:
|
||||
context: .
|
||||
app-jdk21:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}-jdk21"
|
||||
image: "epicmorg/confluence:{{ item }}-jdk21"
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.jdk21
|
@ -1,14 +1,14 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}"
|
||||
image: "epicmorg/confluence:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk6:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}-jdk6"
|
||||
image: "epicmorg/confluence:{{ item }}-jdk6"
|
||||
build:
|
||||
context: .
|
||||
app-jdk7:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}-jdk7"
|
||||
image: "epicmorg/confluence:{{ item }}-jdk7"
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.jdk7
|
||||
|
@ -1,9 +1,9 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}"
|
||||
image: "epicmorg/confluence:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk6:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}-jdk6"
|
||||
image: "epicmorg/confluence:{{ item }}-jdk6"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,14 +1,14 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}"
|
||||
image: "epicmorg/confluence:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk7:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}-jdk7"
|
||||
image: "epicmorg/confluence:{{ item }}-jdk7"
|
||||
build:
|
||||
context: .
|
||||
app-jdk8:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}-jdk8"
|
||||
image: "epicmorg/confluence:{{ item }}-jdk8"
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.jdk8
|
||||
|
@ -1,9 +1,9 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}"
|
||||
image: "epicmorg/confluence:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk7:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}-jdk7"
|
||||
image: "epicmorg/confluence:{{ item }}-jdk7"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,14 +1,14 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}"
|
||||
image: "epicmorg/confluence:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk8:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}-jdk8"
|
||||
image: "epicmorg/confluence:{{ item }}-jdk8"
|
||||
build:
|
||||
context: .
|
||||
app-jdk11:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}-jdk11"
|
||||
image: "epicmorg/confluence:{{ item }}-jdk11"
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.jdk11
|
||||
|
@ -1,9 +1,9 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}"
|
||||
image: "epicmorg/confluence:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk8:
|
||||
image: "quay.io/epicmorg/confluence:{{ item }}-jdk8"
|
||||
image: "epicmorg/confluence:{{ item }}-jdk8"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk11
|
||||
FROM epicmorg/debian:bookworm-jdk11
|
||||
LABEL maintainer="Atlassian Confluence Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -29,7 +29,20 @@ EXPOSE 8091
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \
|
||||
tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \
|
||||
chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk17
|
||||
FROM epicmorg/debian:bookworm-jdk17
|
||||
LABEL maintainer="Atlassian Confluence Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -29,7 +29,20 @@ EXPOSE 8091
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \
|
||||
tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \
|
||||
chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk21
|
||||
FROM epicmorg/debian:bookworm-jdk21
|
||||
LABEL maintainer="Atlassian Confluence Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -29,7 +29,20 @@ EXPOSE 8091
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \
|
||||
tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \
|
||||
chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk6
|
||||
FROM epicmorg/debian:bookworm-jdk6
|
||||
LABEL maintainer="Atlassian Confluence Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -29,7 +29,20 @@ EXPOSE 8091
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \
|
||||
tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \
|
||||
chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk7
|
||||
FROM epicmorg/debian:bookworm-jdk7
|
||||
LABEL maintainer="Atlassian Confluence Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -29,7 +29,20 @@ EXPOSE 8091
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \
|
||||
tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \
|
||||
chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk8
|
||||
FROM epicmorg/debian:bookworm-jdk8
|
||||
LABEL maintainer="Atlassian Confluence Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -29,7 +29,20 @@ EXPOSE 8091
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN mkdir -p ${CONFLUENCE_INSTALL_DIR} && \
|
||||
tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${CONFLUENCE_INSTALL_DIR}" && \
|
||||
chown -R ${RUN_USER}:${RUN_GROUP} ${CONFLUENCE_INSTALL_DIR}/ && \
|
||||
|
@ -1,9 +1,9 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/crowd:{{ item }}"
|
||||
image: "epicmorg/crowd:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk17:
|
||||
image: "quay.io/epicmorg/crowd:{{ item }}-jdk17"
|
||||
image: "epicmorg/crowd:{{ item }}-jdk17"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,14 +1,14 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/crowd:{{ item }}"
|
||||
image: "epicmorg/crowd:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk6:
|
||||
image: "quay.io/epicmorg/crowd:{{ item }}-jdk6"
|
||||
image: "epicmorg/crowd:{{ item }}-jdk6"
|
||||
build:
|
||||
context: .
|
||||
app-jdk7:
|
||||
image: "quay.io/epicmorg/crowd:{{ item }}-jdk7"
|
||||
image: "epicmorg/crowd:{{ item }}-jdk7"
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.jdk7
|
||||
|
@ -1,9 +1,9 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/crowd:{{ item }}"
|
||||
image: "epicmorg/crowd:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk6:
|
||||
image: "quay.io/epicmorg/crowd:{{ item }}-jdk6"
|
||||
image: "epicmorg/crowd:{{ item }}-jdk6"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,14 +1,14 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/crowd:{{ item }}"
|
||||
image: "epicmorg/crowd:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk8:
|
||||
image: "quay.io/epicmorg/crowd:{{ item }}-jdk8"
|
||||
image: "epicmorg/crowd:{{ item }}-jdk8"
|
||||
build:
|
||||
context: .
|
||||
app-jdk11:
|
||||
image: "quay.io/epicmorg/crowd:{{ item }}-jdk11"
|
||||
image: "epicmorg/crowd:{{ item }}-jdk11"
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.jdk11
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk6
|
||||
FROM epicmorg/debian:bookworm-jdk6
|
||||
LABEL maintainer="Atlassian Crowd Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get upgrade -y && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk11
|
||||
FROM epicmorg/debian:bookworm-jdk11
|
||||
LABEL maintainer="Atlassian Crowd Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get upgrade -y && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk17
|
||||
FROM epicmorg/debian:bookworm-jdk17
|
||||
LABEL maintainer="Atlassian Crowd Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get upgrade -y && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk21
|
||||
FROM epicmorg/debian:bookworm-jdk21
|
||||
|
||||
LABEL maintainer="Atlassian Crowd Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
@ -29,7 +29,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get upgrade -y && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk6
|
||||
FROM epicmorg/debian:bookworm-jdk6
|
||||
LABEL maintainer="Atlassian Crowd Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get upgrade -y && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk6
|
||||
FROM epicmorg/debian:bookworm-jdk6
|
||||
LABEL maintainer="Atlassian Crowd Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get upgrade -y && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk7
|
||||
FROM epicmorg/debian:bookworm-jdk7
|
||||
LABEL maintainer="Atlassian Crowd Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get upgrade -y && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk7
|
||||
FROM epicmorg/debian:bookworm-jdk7
|
||||
LABEL maintainer="Atlassian Crowd Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get upgrade -y && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk8
|
||||
FROM epicmorg/debian:bookworm-jdk8
|
||||
LABEL maintainer="Atlassian Crowd Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get upgrade -y && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk6
|
||||
FROM epicmorg/debian:bookworm-jdk6
|
||||
LABEL maintainer="Atlassian Crowd Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get upgrade -y && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk7
|
||||
FROM epicmorg/debian:bookworm-jdk7
|
||||
LABEL maintainer="Atlassian Crowd Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ ENV CROWD_DB ${CROWD_INSTALL_DIR}/databas
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get upgrade -y && \
|
||||
|
@ -1,9 +1,9 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/crucible:{{ item }}"
|
||||
image: "epicmorg/crucible:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk6:
|
||||
image: "quay.io/epicmorg/crucible:{{ item }}-jdk6"
|
||||
image: "epicmorg/crucible:{{ item }}-jdk6"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk6
|
||||
FROM epicmorg/debian:bookworm-jdk6
|
||||
LABEL maintainer="Atlassian Crucible Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ EXPOSE 8060
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
|
||||
RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \
|
||||
7zz x ${TEMP_ARCHIVE} -o/tmp/crucible-temp && \
|
||||
|
@ -1,15 +1,15 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/fisheye-crucible:{{ item }}"
|
||||
image: "epicmorg/fisheye-crucible:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.jdk7
|
||||
app-jdk6:
|
||||
image: "quay.io/epicmorg/fisheye-crucible:{{ item }}-jdk6"
|
||||
image: "epicmorg/fisheye-crucible:{{ item }}-jdk6"
|
||||
build:
|
||||
context: .
|
||||
app-jdk7:
|
||||
image: "quay.io/epicmorg/fisheye-crucible:{{ item }}-jdk7"
|
||||
image: "epicmorg/fisheye-crucible:{{ item }}-jdk7"
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.jdk7
|
||||
|
@ -1,10 +1,10 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/fisheye-crucible:{{ item }}"
|
||||
image: "epicmorg/fisheye-crucible:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk6:
|
||||
image: "quay.io/epicmorg/fisheye-crucible:{{ item }}-jdk6"
|
||||
image: "epicmorg/fisheye-crucible:{{ item }}-jdk6"
|
||||
build:
|
||||
context: .
|
||||
|
||||
|
@ -1,9 +1,9 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/fisheye-crucible:{{ item }}"
|
||||
image: "epicmorg/fisheye-crucible:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk8:
|
||||
image: "quay.io/epicmorg/fisheye-crucible:{{ item }}-jdk8"
|
||||
image: "epicmorg/fisheye-crucible:{{ item }}-jdk8"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk6
|
||||
FROM epicmorg/debian:bookworm-jdk6
|
||||
LABEL maintainer="Atlassian Fisheye Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ EXPOSE 8060
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
|
||||
RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \
|
||||
7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk7
|
||||
FROM epicmorg/debian:bookworm-jdk7
|
||||
LABEL maintainer="Atlassian Fisheye Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ EXPOSE 8060
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
|
||||
RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \
|
||||
7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk8
|
||||
FROM epicmorg/debian:bookworm-jdk8
|
||||
LABEL maintainer="Atlassian Fisheye Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ EXPOSE 8060
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
|
||||
RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \
|
||||
7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \
|
||||
|
@ -1,9 +1,9 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/fisheye:{{ item }}"
|
||||
image: "epicmorg/fisheye:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk6:
|
||||
image: "quay.io/epicmorg/fisheye:{{ item }}-jdk6"
|
||||
image: "epicmorg/fisheye:{{ item }}-jdk6"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk6
|
||||
FROM epicmorg/debian:bookworm-jdk6
|
||||
LABEL maintainer="Atlassian Fisheye Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ EXPOSE 8060
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
|
||||
RUN mkdir -p ${FISHEYE_HOME} ${FISHEYE_INST} && \
|
||||
7zz x ${TEMP_ARCHIVE} -o/tmp/fisheye-temp && \
|
||||
|
@ -1,9 +1,9 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}"
|
||||
image: "epicmorg/jira:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk17:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}-jdk17"
|
||||
image: "epicmorg/jira:{{ item }}-jdk17"
|
||||
build:
|
||||
context: .
|
@ -1,14 +1,14 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}"
|
||||
image: "epicmorg/jira:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk6:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}-jdk6"
|
||||
image: "epicmorg/jira:{{ item }}-jdk6"
|
||||
build:
|
||||
context: .
|
||||
app-jdk7:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}-jdk7"
|
||||
image: "epicmorg/jira:{{ item }}-jdk7"
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.jdk7
|
||||
|
@ -1,9 +1,9 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}"
|
||||
image: "epicmorg/jira:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk6:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}-jdk6"
|
||||
image: "epicmorg/jira:{{ item }}-jdk6"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,14 +1,14 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}"
|
||||
image: "epicmorg/jira:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk7:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}-jdk7"
|
||||
image: "epicmorg/jira:{{ item }}-jdk7"
|
||||
build:
|
||||
context: .
|
||||
app-jdk8:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}-jdk8"
|
||||
image: "epicmorg/jira:{{ item }}-jdk8"
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.jdk8
|
||||
|
@ -1,9 +1,9 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}"
|
||||
image: "epicmorg/jira:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk7:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}-jdk7"
|
||||
image: "epicmorg/jira:{{ item }}-jdk7"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,19 +1,19 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}"
|
||||
image: "epicmorg/jira:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk8:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}-jdk8"
|
||||
image: "epicmorg/jira:{{ item }}-jdk8"
|
||||
build:
|
||||
context: .
|
||||
app-jdk11:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}-jdk11"
|
||||
image: "epicmorg/jira:{{ item }}-jdk11"
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.jdk11
|
||||
app-jdk17:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}-jdk17"
|
||||
image: "epicmorg/jira:{{ item }}-jdk17"
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.jdk17
|
@ -1,14 +1,14 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}"
|
||||
image: "epicmorg/jira:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk8:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}-jdk8"
|
||||
image: "epicmorg/jira:{{ item }}-jdk8"
|
||||
build:
|
||||
context: .
|
||||
app-jdk11:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}-jdk11"
|
||||
image: "epicmorg/jira:{{ item }}-jdk11"
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile.jdk11
|
||||
|
@ -1,9 +1,9 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}"
|
||||
image: "epicmorg/jira:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
app-jdk8:
|
||||
image: "quay.io/epicmorg/jira:{{ item }}-jdk8"
|
||||
image: "epicmorg/jira:{{ item }}-jdk8"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk11
|
||||
FROM epicmorg/debian:bookworm-jdk11
|
||||
LABEL maintainer="Atlassian Jira Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ EXPOSE 8080
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN mkdir -p ${JIRA_INSTALL_DIR} && \
|
||||
tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \
|
||||
chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk17
|
||||
FROM epicmorg/debian:bookworm-jdk17
|
||||
LABEL maintainer="Atlassian Jira Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ EXPOSE 8080
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN mkdir -p ${JIRA_INSTALL_DIR} && \
|
||||
tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \
|
||||
chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk6
|
||||
FROM epicmorg/debian:bookworm-jdk6
|
||||
LABEL maintainer="Atlassian Jira Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ EXPOSE 8080
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN mkdir -p ${JIRA_INSTALL_DIR} && \
|
||||
tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \
|
||||
chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk7
|
||||
FROM epicmorg/debian:bookworm-jdk7
|
||||
LABEL maintainer="Atlassian Jira Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ EXPOSE 8080
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN mkdir -p ${JIRA_INSTALL_DIR} && \
|
||||
tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \
|
||||
chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk8
|
||||
FROM epicmorg/debian:bookworm-jdk8
|
||||
LABEL maintainer="Atlassian Jira Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ EXPOSE 8080
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN mkdir -p ${JIRA_INSTALL_DIR} && \
|
||||
tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \
|
||||
chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk8
|
||||
FROM epicmorg/debian:bookworm-jdk8
|
||||
LABEL maintainer="Atlassian Jira Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ EXPOSE 8080
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN mkdir -p ${JIRA_INSTALL_DIR} && \
|
||||
tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \
|
||||
chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/debian:bookworm-jdk8
|
||||
FROM epicmorg/debian:bookworm-jdk8
|
||||
LABEL maintainer="Atlassian Jira Server Team; EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -28,7 +28,20 @@ EXPOSE 8080
|
||||
##################################################################
|
||||
# Installing
|
||||
##################################################################
|
||||
ADD ${DOWNLOAD_URL} /tmp
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O /tmp/$(basename "${DOWNLOAD_URL}") \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN mkdir -p ${JIRA_INSTALL_DIR} && \
|
||||
tar -xzf ${TEMP_ARCHIVE} --strip-components=1 --directory "${JIRA_INSTALL_DIR}" && \
|
||||
chown -R ${RUN_USER}:${RUN_GROUP} ${JIRA_INSTALL_DIR}/ && \
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/testrail:{{ item }}
|
||||
FROM epicmorg/testrail:{{ item }}
|
||||
|
||||
ENV TESTRAIL_PLUGIN_VERSION=1.4
|
||||
ENV TESTRAIL_PLUGIN_NAME=ad
|
||||
|
@ -1,5 +1,5 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/testrail:auth-ad-{{ item }}"
|
||||
image: "epicmorg/testrail:auth-ad-{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/testrail:{{ item }}
|
||||
FROM epicmorg/testrail:{{ item }}
|
||||
|
||||
ENV TESTRAIL_PLUGIN_VERSION=1.4
|
||||
ENV TESTRAIL_PLUGIN_NAME=ldap
|
||||
|
@ -1,5 +1,5 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/testrail:auth-ldap-{{ item }}"
|
||||
image: "epicmorg/testrail:auth-ldap-{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/apache2:php7.0
|
||||
FROM epicmorg/apache2:php7.0
|
||||
|
||||
##############################################################################
|
||||
# Testrail Install
|
||||
@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/
|
||||
|
||||
RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf
|
||||
|
||||
ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion70.zip \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN echo "[testrail] Preparing folders" && \
|
||||
mkdir -p ${TESTRAIL_RELEASE_DIR} && \
|
||||
mkdir -p ${TR_WWW_PATH} && \
|
||||
|
@ -1,5 +1,5 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/testrail:{{ item }}"
|
||||
image: "epicmorg/testrail:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/testrail:{{ item }}
|
||||
FROM epicmorg/testrail:{{ item }}
|
||||
|
||||
ENV TESTRAIL_PLUGIN_VERSION=1.4
|
||||
ENV TESTRAIL_PLUGIN_NAME=ad
|
||||
|
@ -1,5 +1,5 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/testrail:auth-ad-{{ item }}"
|
||||
image: "epicmorg/testrail:auth-ad-{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/testrail:{{ item }}
|
||||
FROM epicmorg/testrail:{{ item }}
|
||||
|
||||
ENV TESTRAIL_PLUGIN_VERSION=1.4
|
||||
ENV TESTRAIL_PLUGIN_NAME=ldap
|
||||
|
@ -1,5 +1,5 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/testrail:auth-ldap-{{ item }}"
|
||||
image: "epicmorg/testrail:auth-ldap-{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/apache2:php7.1
|
||||
FROM epicmorg/apache2:php7.1
|
||||
|
||||
##############################################################################
|
||||
# Testrail Install
|
||||
@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/
|
||||
|
||||
RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf
|
||||
|
||||
ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion71.zip \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN echo "[testrail] Preparing folders" && \
|
||||
mkdir -p ${TESTRAIL_RELEASE_DIR} && \
|
||||
mkdir -p ${TR_WWW_PATH} && \
|
||||
|
@ -1,5 +1,5 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/testrail:{{ item }}"
|
||||
image: "epicmorg/testrail:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/testrail:{{ item }}
|
||||
FROM epicmorg/testrail:{{ item }}
|
||||
|
||||
ENV TESTRAIL_PLUGIN_VERSION=1.4
|
||||
ENV TESTRAIL_PLUGIN_NAME=ad
|
||||
|
@ -1,5 +1,5 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/testrail:auth-ad-{{ item }}"
|
||||
image: "epicmorg/testrail:auth-ad-{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/testrail:{{ item }}
|
||||
FROM epicmorg/testrail:{{ item }}
|
||||
|
||||
ENV TESTRAIL_PLUGIN_VERSION=1.4
|
||||
ENV TESTRAIL_PLUGIN_NAME=ldap
|
||||
|
@ -1,5 +1,5 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/testrail:auth-ldap-{{ item }}"
|
||||
image: "epicmorg/testrail:auth-ldap-{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/apache2:php7.2
|
||||
FROM epicmorg/apache2:php7.2
|
||||
|
||||
##############################################################################
|
||||
# Testrail Install
|
||||
@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/
|
||||
|
||||
RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf
|
||||
|
||||
ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN echo "[testrail] Preparing folders" && \
|
||||
mkdir -p ${TESTRAIL_RELEASE_DIR} && \
|
||||
mkdir -p ${TR_WWW_PATH} && \
|
||||
|
@ -1,5 +1,5 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/testrail:{{ item }}"
|
||||
image: "epicmorg/testrail:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/testrail:{{ item }}
|
||||
FROM epicmorg/testrail:{{ item }}
|
||||
|
||||
ENV TESTRAIL_PLUGIN_VERSION=1.4
|
||||
ENV TESTRAIL_PLUGIN_NAME=ad
|
||||
|
@ -1,5 +1,5 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/testrail:auth-ad-{{ item }}"
|
||||
image: "epicmorg/testrail:auth-ad-{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/testrail:{{ item }}
|
||||
FROM epicmorg/testrail:{{ item }}
|
||||
|
||||
ENV TESTRAIL_PLUGIN_VERSION=1.4
|
||||
ENV TESTRAIL_PLUGIN_NAME=ldap
|
||||
|
@ -1,5 +1,5 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/testrail:auth-ldap-{{ item }}"
|
||||
image: "epicmorg/testrail:auth-ldap-{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/apache2:php7.4
|
||||
FROM epicmorg/apache2:php7.4
|
||||
|
||||
##############################################################################
|
||||
# Testrail Install
|
||||
@ -31,7 +31,20 @@ ENV OPENSSL_CONF=/etc/ssl/
|
||||
|
||||
RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf
|
||||
|
||||
ADD ${DOWNLOAD_URL} ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip
|
||||
RUN wget -c \
|
||||
--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0" \
|
||||
--no-check-certificate \
|
||||
--tries=5 \
|
||||
--timeout=30 \
|
||||
--waitretry=5 \
|
||||
--retry-connrefused \
|
||||
--dns-timeout=10 \
|
||||
--read-timeout=20 \
|
||||
--progress=dot:giga \
|
||||
--no-clobber \
|
||||
-O ${TESTRAIL_RELEASE_DIR}/testrail-${TESTRAIL_VERSION}-ion72.zip \
|
||||
"${DOWNLOAD_URL}"
|
||||
|
||||
RUN echo "[testrail] Preparing folders" && \
|
||||
mkdir -p ${TESTRAIL_RELEASE_DIR} && \
|
||||
mkdir -p ${TR_WWW_PATH} && \
|
||||
|
@ -1,5 +1,5 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/testrail:{{ item }}"
|
||||
image: "epicmorg/testrail:{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/testrail:{{ item }}
|
||||
FROM epicmorg/testrail:{{ item }}
|
||||
|
||||
ENV TESTRAIL_PLUGIN_VERSION=1.4
|
||||
ENV TESTRAIL_PLUGIN_NAME=ad
|
||||
|
@ -1,5 +1,5 @@
|
||||
services:
|
||||
app:
|
||||
image: "quay.io/epicmorg/testrail:auth-ad-{{ item }}"
|
||||
image: "epicmorg/testrail:auth-ad-{{ item }}"
|
||||
build:
|
||||
context: .
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/epicmorg/testrail:{{ item }}
|
||||
FROM epicmorg/testrail:{{ item }}
|
||||
|
||||
ENV TESTRAIL_PLUGIN_VERSION=1.4
|
||||
ENV TESTRAIL_PLUGIN_NAME=ldap
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user