mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-28 15:45:44 +03:00
26 lines
590 B
YAML
26 lines
590 B
YAML
|
version: '3.9'
|
||
|
services:
|
||
|
app:
|
||
|
image: "epicmorg/confluence:${RELEASE}"
|
||
|
build:
|
||
|
context: .
|
||
|
args:
|
||
|
RELEASE: ${RELEASE}
|
||
|
DOWNLOAD_URL: ${DOWNLOAD_URL}
|
||
|
app-jdk11:
|
||
|
image: "epicmorg/confluence:${RELEASE}-jdk11"
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: Dockerfile.jdk11
|
||
|
args:
|
||
|
RELEASE: ${RELEASE}
|
||
|
DOWNLOAD_URL: ${DOWNLOAD_URL}
|
||
|
app-jdk17:
|
||
|
image: "epicmorg/confluence:${RELEASE}-jdk17"
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: Dockerfile.jdk17
|
||
|
args:
|
||
|
RELEASE: ${RELEASE}
|
||
|
DOWNLOAD_URL: ${DOWNLOAD_URL}
|