Files
Personal-Rancher-Catalog/templates/Nextcloud1/0/rancher-compose.yml
2018-07-09 18:16:46 -04:00

91 lines
2.2 KiB
YAML

version: '2'
catalog:
name: Nextcloud
version: latest
# description:
# minimum_rancher_version:
# maximum_rancher_version:
# upgrade_from:
questions:
- variable: HOST_LABEL
label: "Host Label Key/Value Pair"
description: |
The Label Key/Value pair on the host which containers should be deployed
default: "host.id=0000"
required: false
type: string
- variable: HOST_HTTP_PORT
label: Port
description: |
The HTTP port to access the web interface on.
default: "9000"
required: true
type: string
- variable: STORAGE_BASE_DIR
label: "Base Storage Directory"
description: |
The base path of where persistent storage should be kept at.
default: "/RancherStorage/Nextcloud"
required: true
type: string
- variable: APP_DIR
label: "Application Files Directory"
description: |
The folder for persistent logo files.
default: "/Application"
required: true
type: string
- variable: DATA_DIR
label: "User Data Directory"
description: |
The folder for persistent user data.
default: "/UserData"
required: true
type: string
- variable: DB_DIR
label: "Database Directory"
description: |
The folder for persistent database files.
default: "/Database"
required: true
type: string
- variable: DB_ROOT_PASS
label: "MySQL Root Password"
description: |
A secure password to be used by the "root" MySQL user.
required: true
type: password
- variable: DB_USER_PASS
label: "MySQL User Password"
description: |
A secure password to be used by the "nextcloud_user" MySQL user.
required: true
type: password
- variable: NC_ADMIN
label: "Nextcloud Admin Username"
description: |
The username of the Nextcloud admin user.
required: true
type: string
- variable: NC_ADMIN_PASS
label: "Nextcloud Admin Password"
description: |
A secure password for the Nextcloud admin user.
required: true
type: password
services:
nextcloud:
scale: 1
mysql:
scale: 1