Removing comments

This commit is contained in:
William Miceli
2018-03-14 11:01:54 -04:00
parent f6b90bc410
commit 195bcb0c9d
2 changed files with 11 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
version: "3" version: "3"
services: services:
zerotier: zerotier:
container_name: ${NAME} #(Optional) Custom name for the container, rather than a generated default name. container_name: ${NAME}
image: zerotier/zerotier-containerized:latest image: zerotier/zerotier-containerized:latest
cap_add: cap_add:
- NET_ADMIN - NET_ADMIN

View File

@@ -1,9 +1,9 @@
version: '2' version: '2'
catalog: catalog:
name: "ZeroTier-Containerized" # Name of the versioned template of the Catalog Entry name: "ZeroTier-Containerized"
version: "latest" # Version of the versioned template of the Catalog Entry version: "latest"
description: ZeroTier-Containerized instance for virtual networking # Description of the versioned template of the Catalog Entry description: ZeroTier-Containerized instance for virtual networking
questions: #Used to request user input for configuration options questions:
- variable: "NAME" - variable: "NAME"
label: "Container Name" label: "Container Name"
description: | description: |
@@ -11,10 +11,10 @@ catalog:
default: "ZeroTier" default: "ZeroTier"
required: false required: false
type: string type: string
- variable: "CONFIG_STORAGE" # A single word that is used to pair the question and answer. - variable: "CONFIG_STORAGE"
label: "Persistent Config Path" # The "question" to be answered. label: "Persistent Config Path"
description: | # The description of the question to show the user how to answer the question. description: |
The path to where ZeroTier should hold it's persistent files. Preferrably a local-only location. The path to where ZeroTier should hold it's persistent files. Preferrably a local-only location.
default: "/var/lib/Storage-Local/zerotier-one" # (Optional) A default value that will be pre-populated into the UI default: "/var/lib/Storage-Local/zerotier-one"
required: false # (Optional) Whether or not an answer is required. By default, it's considered `false`. required: false
type: string # How the questions are formatted and types of response expected type: string