Add Artifactory OSS template
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
version: '2'
|
||||
|
||||
services:
|
||||
|
||||
artifactory:
|
||||
image: docker.bintray.io/jfrog/artifactory-oss:5.4.4
|
||||
{{- if (.Values.PUBLISH_PORT)}}
|
||||
ports:
|
||||
- ${PUBLISH_PORT}:8081
|
||||
{{- else}}
|
||||
expose:
|
||||
- 8081
|
||||
{{- end}}
|
||||
volumes:
|
||||
- artifactory-data:/var/opt/jfrog/artifactory
|
||||
environment:
|
||||
- EXTRA_JAVA_OPTIONS=${EXTRA_JAVA_OPTIONS}
|
||||
|
||||
volumes:
|
||||
artifactory-data:
|
||||
driver: ${VOLUME_DRIVER}
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
version: '2'
|
||||
|
||||
catalog:
|
||||
name: "Artifactory OSS"
|
||||
version: "5.4.4"
|
||||
description: "Artifactory is a universal Binary Repository Manager"
|
||||
questions:
|
||||
- variable: "PUBLISH_PORT"
|
||||
label: "Publish port"
|
||||
description: |
|
||||
Set port if you want publish external port for Artifactory server.
|
||||
required: false
|
||||
type: "string"
|
||||
default: "8081"
|
||||
- variable: "EXTRA_JAVA_OPTIONS"
|
||||
label: "Extra Java options"
|
||||
description: |
|
||||
type: "string"
|
||||
default: ""
|
||||
- variable: "VOLUME_DRIVER"
|
||||
type: "string"
|
||||
label: "Volume driver for Artifactory data"
|
||||
description: |
|
||||
Specifiy docker volume driver to use
|
||||
default: "local"
|
||||
required: true
|
||||
Reference in New Issue
Block a user