mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2025-01-01 09:35:34 +03:00
17 lines
345 B
YAML
17 lines
345 B
YAML
|
version: '3'
|
||
|
services:
|
||
|
app:
|
||
|
image: "epicmorg/bitbucket:${RELEASE}"
|
||
|
build:
|
||
|
context: .
|
||
|
args:
|
||
|
RELEASE: ${RELEASE}
|
||
|
DOWNLOAD_URL: ${DOWNLOAD_URL}
|
||
|
app-jdk7:
|
||
|
image: "epicmorg/bitbucket:${RELEASE}-jdk7"
|
||
|
build:
|
||
|
context: .
|
||
|
args:
|
||
|
RELEASE: ${RELEASE}
|
||
|
DOWNLOAD_URL: ${DOWNLOAD_URL}
|