Moved some projects to archive
This commit is contained in:
@@ -1 +0,0 @@
|
||||
# Cryptpad
|
||||
@@ -1,38 +0,0 @@
|
||||
version: '2'
|
||||
|
||||
services:
|
||||
cryptpad:
|
||||
image: cryptpad/cryptpad:latest
|
||||
dns: # Using Cloudflare DNS
|
||||
- 1.1.1.1
|
||||
- 1.0.0.1
|
||||
- 2606:4700:4700::1111
|
||||
- 2606:4700:4700::1001
|
||||
labels:
|
||||
io.rancher.container.pull_image: always
|
||||
{{- if .Values.HOST_LABEL}}
|
||||
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
||||
{{- end}}
|
||||
traefik.enable: true
|
||||
### Start Web Segment
|
||||
traefik.frontend.entryPoints: http,https
|
||||
traefik.frontend.headers.forceSTSHeader: true
|
||||
traefik.frontend.headers.referrerPolicy: no-referrer # Security enhancement (Prevents leaking of referer information)
|
||||
traefik.frontend.headers.SSLRedirect: true
|
||||
traefik.frontend.headers.STSPreload: true
|
||||
traefik.frontend.headers.STSSeconds: 15552000
|
||||
traefik.frontend.passHostHeader: true
|
||||
traefik.frontend.rule: Host:${TRAEFIK_HOST}
|
||||
traefik.port: "3000"
|
||||
### End Web Segment
|
||||
restart: on-failure
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
|
||||
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
|
||||
- /Persistent/${DATA_DIR}/Blob:/cryptpad/blob
|
||||
- /Persistent/${DATA_DIR}/BlobStage:/cryptpad/blobstage
|
||||
- /Persistent/${DATA_DIR}/Block:/cryptpad/block
|
||||
- /Persistent/${DATA_DIR}/Configuration:/cryptpad/customize
|
||||
- /Persistent/${DATA_DIR}/Data:/cryptpad/datastore
|
||||
- /Persistent/${DATA_DIR}/Pins:/cryptpad/pins
|
||||
- /Persistent/${DATA_DIR}/Tasks:/cryptpad/tasks
|
||||
@@ -1,33 +0,0 @@
|
||||
version: '2'
|
||||
catalog:
|
||||
name: Cryptpad
|
||||
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 of the host which containers should be deployed
|
||||
default: "host.id=Host1"
|
||||
required: false
|
||||
type: string
|
||||
|
||||
- variable: "TRAEFIK_HOST"
|
||||
label: "Public Host Domain"
|
||||
description: |
|
||||
The host that Traefik will use to provide public access.
|
||||
default: "subdomain.domain.tld"
|
||||
required: true
|
||||
type: string
|
||||
|
||||
- variable: "DATA_DIR"
|
||||
label: "Data Directory"
|
||||
description: |
|
||||
The directory to store persistent data for the stack.
|
||||
default: "Personal/Cryptpad"
|
||||
required: true
|
||||
type: string
|
||||
@@ -1,8 +0,0 @@
|
||||
name: Cryptpad
|
||||
description: |
|
||||
Status: NOT READY
|
||||
version: latest
|
||||
# category:
|
||||
maintainer: WilliamMiceli
|
||||
# license:
|
||||
# projectURL:
|
||||
@@ -1,22 +0,0 @@
|
||||
# Guacamole
|
||||
|
||||
Apache Guacamole is a clientless remote desktop gateway. It supports standard protocols like VNC, RDP, and SSH.
|
||||
|
||||
We call it clientless because no plugins or client software are required.
|
||||
|
||||
Thanks to HTML5, once Guacamole is installed on a server, all you need to access your desktops is a web browser.
|
||||
|
||||
## Initial Setup
|
||||
|
||||
On the "guacamole" container, run:
|
||||
`/opt/guacamole/bin/initdb.sh --mysql > /setup/initdb.sql`
|
||||
|
||||
On the "mysql" container, run:
|
||||
`cat /setup/initdb.sql | mysql -u root -p guacamole_db`
|
||||
|
||||
## Post-Installation
|
||||
|
||||
Make sure you create your own user account and delete the "guacadmin" user (or at very least change the password)
|
||||
|
||||
## TODO
|
||||
* Allow adding extensions
|
||||
@@ -1,80 +0,0 @@
|
||||
version: '2'
|
||||
|
||||
services:
|
||||
guacamole:
|
||||
image: guacamole/guacamole:latest
|
||||
dns:
|
||||
- 1.1.1.1
|
||||
- 1.0.0.1
|
||||
- 2606:4700:4700::1111
|
||||
- 2606:4700:4700::1001
|
||||
environment:
|
||||
GUACD_HOSTNAME: guacd
|
||||
MYSQL_HOSTNAME: mysql
|
||||
MYSQL_DATABASE: guacamole_db
|
||||
MYSQL_USER: guacamole_user
|
||||
MYSQL_PASSWORD: ${DB_USER_PASS}
|
||||
labels:
|
||||
io.rancher.container.pull_image: always
|
||||
{{- if .Values.HOST_LABEL}}
|
||||
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
||||
{{- end}}
|
||||
traefik.enable: true
|
||||
### Start Web Segment
|
||||
traefik.frontend.entryPoints: http,https
|
||||
traefik.frontend.headers.forceSTSHeader: true
|
||||
traefik.frontend.headers.referrerPolicy: no-referrer # Security enhancement (Prevents leaking of referer information)
|
||||
traefik.frontend.headers.SSLRedirect: true
|
||||
traefik.frontend.headers.STSPreload: true
|
||||
traefik.frontend.headers.STSSeconds: 15552000
|
||||
traefik.frontend.passHostHeader: true
|
||||
traefik.frontend.rule: "Host:${TRAEFIK_HOSTNAME}; AddPrefix:/guacamole"
|
||||
traefik.port: "8080"
|
||||
### End Web Segment
|
||||
links:
|
||||
- guacd
|
||||
- mysql
|
||||
restart: on-failure
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
|
||||
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
|
||||
- /Persistent/${DATA_DIR}/Setup:/setup # Used to make initial setup much simpler
|
||||
guacd:
|
||||
image: guacamole/guacd:latest
|
||||
dns:
|
||||
- 1.1.1.1
|
||||
- 1.0.0.1
|
||||
labels:
|
||||
io.rancher.container.pull_image: always
|
||||
{{- if .Values.HOST_LABEL}}
|
||||
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
||||
{{- end}}
|
||||
traefik.enable: false
|
||||
restart: on-failure
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
|
||||
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
|
||||
mysql:
|
||||
image: mysql:5
|
||||
dns:
|
||||
- 1.1.1.1
|
||||
- 1.0.0.1
|
||||
- 2606:4700:4700::1111
|
||||
- 2606:4700:4700::1001
|
||||
environment:
|
||||
MYSQL_DATABASE: guacamole_db
|
||||
MYSQL_ROOT_PASSWORD: ${DB_ROOT_PASS}
|
||||
MYSQL_USER: guacamole_user
|
||||
MYSQL_PASSWORD: ${DB_USER_PASS}
|
||||
labels:
|
||||
io.rancher.container.pull_image: always
|
||||
{{- if .Values.HOST_LABEL}}
|
||||
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
||||
{{- end}}
|
||||
traefik.enable: false
|
||||
restart: on-failure
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
|
||||
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
|
||||
- /Persistent/${DATA_DIR}/Database:/var/lib/mysql
|
||||
- /Persistent/${DATA_DIR}/Setup:/setup # Used to make initial setup much simpler
|
||||
@@ -1,50 +0,0 @@
|
||||
version: '2'
|
||||
catalog:
|
||||
name: Guacamole
|
||||
version: latest
|
||||
# description:
|
||||
# minimum_rancher_version:
|
||||
# maximum_rancher_version:
|
||||
# upgrade_from:
|
||||
# uuid:
|
||||
questions:
|
||||
|
||||
- variable: "HOST_LABEL"
|
||||
label: "Host Label Key/Value Pair"
|
||||
description: |
|
||||
The Key/Value pair of the host which the stack should be deployed.
|
||||
default: "host.id=Controller"
|
||||
required: false
|
||||
type: string
|
||||
|
||||
- variable: "TRAEFIK_HOSTNAME"
|
||||
label: "Public Hostname"
|
||||
description: |
|
||||
The FQDN which Traefik should use to provide public access.
|
||||
default: "subdomain.domain.tld"
|
||||
required: true
|
||||
type: string
|
||||
|
||||
- variable: "DB_ROOT_PASS"
|
||||
label: "Database Root Password"
|
||||
description: |
|
||||
A secure password to be used by the "root" user.
|
||||
# default:
|
||||
required: true
|
||||
type: password
|
||||
|
||||
- variable: "DB_USER_PASS"
|
||||
label: "Database User Password"
|
||||
description: |
|
||||
A secure password to be used by the "guacamole_user" user.
|
||||
# default:
|
||||
required: true
|
||||
type: password
|
||||
|
||||
- variable: "DATA_DIR"
|
||||
label: "Data Directory"
|
||||
description: |
|
||||
The directory to store persistent data for the stack.
|
||||
default: "Personal/Guacamole"
|
||||
required: true
|
||||
type: string
|
||||
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 49 KiB |
@@ -1,8 +0,0 @@
|
||||
name: Apache Guacamole
|
||||
description: |
|
||||
A clientless remote desktop gateway. It supports standard protocols like VNC, RDP, and SSH.
|
||||
version: latest
|
||||
#category:
|
||||
maintainer: WilliamMiceli
|
||||
# license:
|
||||
# projectURL:
|
||||
@@ -1 +0,0 @@
|
||||
# Mautic
|
||||
@@ -1,66 +0,0 @@
|
||||
version: '2'
|
||||
|
||||
services:
|
||||
mautic:
|
||||
image: mautic/mautic:latest
|
||||
dns: # Using Cloudflare DNS
|
||||
- 1.1.1.1
|
||||
- 1.0.0.1
|
||||
- 2606:4700:4700::1111
|
||||
- 2606:4700:4700::1001
|
||||
environment:
|
||||
MAUTIC_DB_HOST: mysql
|
||||
MAUTIC_DB_USER: mautic_user
|
||||
MAUTIC_DB_PASSWORD: ${DB_USER_PASS}
|
||||
MAUTIC_DB_NAME: mautic_db
|
||||
MAUTIC_TRUSTED_PROXIES: 10.42.0.0/16 # 10.42.0.0/16 is the default Rancher-managed subnet
|
||||
labels:
|
||||
io.rancher.container.pull_image: always
|
||||
{{- if .Values.HOST_LABEL}}
|
||||
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
||||
{{- end}}
|
||||
# io.rancher.sidekicks: cron
|
||||
traefik.enable: true
|
||||
### Start Web UI Segment
|
||||
traefik.frontend.entryPoints: http,https
|
||||
traefik.frontend.headers.forceSTSHeader: true
|
||||
traefik.frontend.headers.referrerPolicy: no-referrer # Security enhancement (Prevents leaking of referer information)
|
||||
traefik.frontend.headers.SSLRedirect: true
|
||||
traefik.frontend.headers.STSIncludeSubdomains: true
|
||||
traefik.frontend.headers.STSPreload: true
|
||||
traefik.frontend.headers.STSSeconds: 15552000
|
||||
traefik.frontend.passHostHeader: true
|
||||
traefik.frontend.rule: Host:${TRAEFIK_HOST}
|
||||
traefik.port: "80"
|
||||
### End Web UI Segment
|
||||
links:
|
||||
- mysql
|
||||
restart: on-failure
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
|
||||
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
|
||||
- /Persistent/${DATA_DIR}:/var/www/html # Mautic site
|
||||
mysql:
|
||||
image: mysql:5.6
|
||||
dns: # Using Cloudflare DNS
|
||||
- 1.1.1.1
|
||||
- 1.0.0.1
|
||||
- 2606:4700:4700::1111
|
||||
- 2606:4700:4700::1001
|
||||
environment:
|
||||
MYSQL_DATABASE: mautic_db
|
||||
MYSQL_ROOT_PASSWORD: ${DB_ROOT_PASS}
|
||||
MYSQL_USER: mautic_user
|
||||
MYSQL_PASSWORD: ${DB_USER_PASS}
|
||||
labels:
|
||||
io.rancher.container.pull_image: always
|
||||
{{- if .Values.HOST_LABEL}}
|
||||
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
||||
{{- end}}
|
||||
traefik.enable: false
|
||||
restart: on-failure
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
|
||||
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
|
||||
- /Persistent/${DATA_DIR}/Database:/var/lib/mysql
|
||||
|
||||
@@ -1,49 +0,0 @@
|
||||
version: '2'
|
||||
catalog:
|
||||
name: Mautic
|
||||
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 of the host which containers should be deployed
|
||||
default: "host.id=Host1"
|
||||
required: false
|
||||
type: string
|
||||
|
||||
- variable: "TRAEFIK_HOST"
|
||||
label: "Public Host Domain"
|
||||
description: |
|
||||
The host that Traefik will use to provide public access.
|
||||
default: "subdomain.domain.tld"
|
||||
required: true
|
||||
type: string
|
||||
|
||||
- variable: "DB_ROOT_PASS"
|
||||
label: "Database Root Password"
|
||||
description: |
|
||||
A secure password to be used by the "root" database user.
|
||||
# default:
|
||||
required: true
|
||||
type: password
|
||||
|
||||
- variable: "DB_USER_PASS"
|
||||
label: "Database User Password"
|
||||
description: |
|
||||
A secure password to be used by the "mautic_user" database user.
|
||||
# default:
|
||||
required: true
|
||||
type: password
|
||||
|
||||
- variable: "DATA_DIR"
|
||||
label: "Data Directory"
|
||||
description: |
|
||||
The directory to store persistent data for the stack.
|
||||
default: "Personal/Mautic"
|
||||
required: true
|
||||
type: string
|
||||
@@ -1,8 +0,0 @@
|
||||
name: Mautic
|
||||
description: |
|
||||
Status: Experimental
|
||||
version: latest
|
||||
# category:
|
||||
maintainer: WilliamMiceli
|
||||
# license:
|
||||
# projectURL:
|
||||
@@ -1,6 +0,0 @@
|
||||
# Pydio Cells
|
||||
|
||||
As of 2019/01/22:
|
||||
Cells seems UNSTABLE
|
||||
Was only able to get it started once, but didn't even make it all the way through installing.
|
||||
Will probably come back to this at a later date, once they've worked out all the issues.
|
||||
@@ -1,61 +0,0 @@
|
||||
version: '2'
|
||||
|
||||
services:
|
||||
cells:
|
||||
image: pydio/cells:latest
|
||||
dns: # Using Cloudflare DNS
|
||||
- 1.1.1.1
|
||||
- 1.0.0.1
|
||||
- 2606:4700:4700::1111
|
||||
- 2606:4700:4700::1001
|
||||
environment:
|
||||
CELLS_BIND: "localhost:80"
|
||||
CELLS_EXTERNAL: "${TRAEFIK_HOST}:443"
|
||||
CELLS_NO_SSL: 0
|
||||
labels:
|
||||
io.rancher.container.pull_image: always
|
||||
{{- if .Values.HOST_LABEL}}
|
||||
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
||||
{{- end}}
|
||||
traefik.enable: true
|
||||
### Start Web Segment
|
||||
traefik.web.frontend.entryPoints: http,https
|
||||
traefik.web.frontend.headers.forceSTSHeader: true
|
||||
traefik.web.frontend.headers.referrerPolicy: no-referrer # Security enhancement (Prevents leaking of referer information)
|
||||
traefik.web.frontend.headers.SSLRedirect: true
|
||||
traefik.web.frontend.headers.STSPreload: true
|
||||
traefik.web.frontend.headers.STSSeconds: 15552000
|
||||
traefik.web.frontend.rule: Host:${TRAEFIK_HOST}
|
||||
traefik.web.port: "80"
|
||||
### End Web Segment
|
||||
links:
|
||||
- mysql
|
||||
restart: on-failure
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
|
||||
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
|
||||
- /Persistent/${DATA_DIR}:/root/.config/pydio/cells
|
||||
mysql:
|
||||
image: mysql:5.7
|
||||
command: [mysqld, --character-set-server=utf8mb4, --collation-server=utf8mb4_unicode_ci]
|
||||
dns: # Using Cloudflare DNS
|
||||
- 1.1.1.1
|
||||
- 1.0.0.1
|
||||
- 2606:4700:4700::1111
|
||||
- 2606:4700:4700::1001
|
||||
environment:
|
||||
MYSQL_DATABASE: cells_db
|
||||
MYSQL_ROOT_PASSWORD: ${DB_ROOT_PASS}
|
||||
MYSQL_USER: cells_user
|
||||
MYSQL_PASSWORD: ${DB_USER_PASS}
|
||||
labels:
|
||||
io.rancher.container.pull_image: always
|
||||
{{- if .Values.HOST_LABEL}}
|
||||
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
||||
{{- end}}
|
||||
traefik.enable: false
|
||||
restart: on-failure
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
|
||||
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
|
||||
- /Persistent/${DATA_DIR}/Database:/var/lib/mysql
|
||||
@@ -1,49 +0,0 @@
|
||||
version: '2'
|
||||
catalog:
|
||||
name: Pydio Cells
|
||||
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=Host1"
|
||||
required: false
|
||||
type: string
|
||||
|
||||
- variable: "TRAEFIK_HOST"
|
||||
label: "Public Host Domain"
|
||||
description: |
|
||||
The host that Traefik will use to provide public access.
|
||||
default: "subdomain.domain.tld"
|
||||
required: true
|
||||
type: string
|
||||
|
||||
- variable: "DB_ROOT_PASS"
|
||||
label: "Database Root Password"
|
||||
description: |
|
||||
A secure password to be used by the "root" database user.
|
||||
# default:
|
||||
required: true
|
||||
type: password
|
||||
|
||||
- variable: "DB_USER_PASS"
|
||||
label: "Database User Password"
|
||||
description: |
|
||||
A secure password to be used by the "cells_user" database user.
|
||||
# default:
|
||||
required: true
|
||||
type: password
|
||||
|
||||
- variable: "DATA_DIR"
|
||||
label: "Data Directory"
|
||||
description: |
|
||||
The directory to store persistent data for the stack.
|
||||
default: "Personal/Pydio-Cells"
|
||||
required: true
|
||||
type: string
|
||||
@@ -1,8 +0,0 @@
|
||||
name: Pydio Cells
|
||||
description: |
|
||||
Status: EXPERIMENTAL
|
||||
version: latest
|
||||
# category:
|
||||
maintainer: WilliamMiceli
|
||||
# license:
|
||||
# projectURL:
|
||||
@@ -1 +0,0 @@
|
||||
# Thingsboard
|
||||
@@ -1,49 +0,0 @@
|
||||
version: '2'
|
||||
services:
|
||||
tb:
|
||||
image: "thingsboard/application:1.2.4"
|
||||
ports:
|
||||
- "${http_public_port}:8080"
|
||||
- "${mqtt_public_port}:1883"
|
||||
- "${coap_public_port}:5683/udp"
|
||||
environment:
|
||||
- MQTT_BIND_ADDRESS=0.0.0.0
|
||||
- MQTT_BIND_PORT=1883
|
||||
- COAP_BIND_ADDRESS=0.0.0.0
|
||||
- COAP_BIND_PORT=5683
|
||||
- ZOOKEEPER_URL=zk:2181
|
||||
- DATABASE_TYPE=${database_type}
|
||||
{{- if eq .Values.database_type "cassandra" }}
|
||||
- CASSANDRA_URL=db:9042
|
||||
- CASSANDRA_HOST=db
|
||||
- CASSANDRA_PORT=9042
|
||||
{{- else }}
|
||||
- POSTGRES_HOST=db
|
||||
- POSTGRES_PORT=5432
|
||||
{{- end }}
|
||||
- ADD_SCHEMA_AND_SYSTEM_DATA=${add_schema_and_system_data}
|
||||
- ADD_DEMO_DATA=${add_demo_data}
|
||||
volumes:
|
||||
- hsqldb_data_dir:/usr/share/thingsboard/data/sql
|
||||
links:
|
||||
- db:db
|
||||
external_links:
|
||||
- ${zookeeper_service}:zk
|
||||
entrypoint: /run-application.sh
|
||||
db:
|
||||
{{- if eq .Values.database_type "cassandra" }}
|
||||
image: "cassandra:3"
|
||||
volumes:
|
||||
- db_data_dir:/var/lib/cassandra
|
||||
{{- else }}
|
||||
image: "postgres:9.6"
|
||||
environment:
|
||||
- POSTGRES_DB=${postgres_db}
|
||||
volumes:
|
||||
- db_data_dir:/var/lib/postgresql/data
|
||||
{{- end }}
|
||||
volumes:
|
||||
hsqldb_data_dir:
|
||||
driver: ${volume_driver}
|
||||
db_data_dir:
|
||||
driver: ${volume_driver}
|
||||
@@ -1,93 +0,0 @@
|
||||
version: '2'
|
||||
catalog:
|
||||
name: Thingsboard
|
||||
version: latest
|
||||
# description:
|
||||
# minimum_rancher_version:
|
||||
# maximum_rancher_version:
|
||||
# upgrade_from:
|
||||
uuid: Thingsboard-1
|
||||
questions:
|
||||
|
||||
- variable: http_public_port
|
||||
description: "Thingsboard dashboard published port"
|
||||
label: "Http public port"
|
||||
required: true
|
||||
default: "8080"
|
||||
type: int
|
||||
|
||||
- variable: mqtt_public_port
|
||||
description: "MQTT published port"
|
||||
label: "MQTT public port"
|
||||
required: true
|
||||
default: "1883"
|
||||
type: int
|
||||
|
||||
- variable: coap_public_port
|
||||
description: "COAP published port"
|
||||
label: "COAP public port"
|
||||
required: true
|
||||
default: "5683"
|
||||
type: int
|
||||
|
||||
- variable: database_type
|
||||
description: "Choose database type to use: sql or cassandra"
|
||||
label: "Database type"
|
||||
required: true
|
||||
default: "sql"
|
||||
type: enum
|
||||
options:
|
||||
- sql
|
||||
- cassandra
|
||||
|
||||
- variable: add_schema_and_system_data
|
||||
description: "Whether to init scheme and system data"
|
||||
label: "Add schema and system data"
|
||||
required: true
|
||||
default: true
|
||||
type: boolean
|
||||
|
||||
- variable: add_demo_data
|
||||
description: "Whether to insert demo data"
|
||||
label: "Add demo data"
|
||||
required: true
|
||||
default: true
|
||||
type: boolean
|
||||
|
||||
- variable: zookeeper_service
|
||||
description: "Zookeeper service stack"
|
||||
label: "Zookeeper service"
|
||||
required: true
|
||||
default: "zookeeper/zk"
|
||||
type: "service"
|
||||
|
||||
- variable: postgres_db
|
||||
description: "Database name in postgresql"
|
||||
label: "Dbname"
|
||||
required: true
|
||||
default: "thingsboard"
|
||||
type: string
|
||||
|
||||
- variable: volume_driver
|
||||
description: "Volume driver to use with this service"
|
||||
label: "Volume driver"
|
||||
required: true
|
||||
default: "local"
|
||||
type: enum
|
||||
options:
|
||||
- local
|
||||
- rancher-nfs
|
||||
- rancher-efs
|
||||
- rancher-ebs
|
||||
|
||||
services:
|
||||
tb:
|
||||
scale: 1
|
||||
retain_ip: true
|
||||
health_check:
|
||||
port: 8080
|
||||
interval: 5000
|
||||
unhealthy_threshold: 3
|
||||
request_line: 'GET / HTTP/1.0'
|
||||
healthy_threshold: 2
|
||||
response_timeout: 5000
|
||||
@@ -1,8 +0,0 @@
|
||||
name: Thingsboard
|
||||
description: |
|
||||
Status: NOT READY
|
||||
# version:
|
||||
category: Analytics
|
||||
maintainer: WilliamMiceli
|
||||
# license:
|
||||
# projectURL:
|
||||
@@ -1,22 +0,0 @@
|
||||
# XWiki
|
||||
|
||||
XWiki is a free wiki software platform written in Java with a design emphasis on extensibility. XWiki is an enterprise wiki. It includes WYSIWYG editing, OpenDocument based document import/export, semantic annotations and tagging, and advanced permissions management.
|
||||
|
||||
As an application wiki, XWiki allows for the storing of structured data and the execution of server side script within the wiki interface. Scripting languages including Velocity, Apache Groovy, Python, Ruby and PHP can be written directly into wiki pages using wiki macros. User created data structures can be defined in wiki documents and instances of those structures can be attached to wiki documents, stored in a database, and queried using either Hibernate query language or XWiki's own query language.
|
||||
|
||||
XWiki.org's extension wiki is home to XWiki extensions ranging from code snippets which can be pasted into wiki pages to loadable core modules. Many of XWiki Enterprise's features are provided by extensions which are bundled with it.
|
||||
|
||||
## Upgrade Notices
|
||||
|
||||
* To 11.1 - If you are receiving an HTTP 500 error after upgrading, you need to make the change [described here](https://www.xwiki.org/xwiki/bin/view/ReleaseNotes/Data/XWiki/11.1/#HIntroductionoftheEventStreamStore)
|
||||
|
||||
## Popular Configuration Articles
|
||||
|
||||
* [https://www.xwiki.org/xwiki/bin/view/Documentation/AdminGuide/Configuration/]
|
||||
* [https://www.xwiki.org/xwiki/bin/view/Documentation/AdminGuide/Virtualization/]
|
||||
* [https://www.xwiki.org/xwiki/bin/view/Documentation/AdminGuide/ShortURLs/]
|
||||
|
||||
### TODO
|
||||
|
||||
* Fix issue with some page assets being delivered over http instead of https
|
||||
* Document setting up domain DNS for [wildcard Let's Encrypt certificates](https://docs.traefik.io/configuration/acme/#wildcard-domains)
|
||||
@@ -1,68 +0,0 @@
|
||||
version: '2'
|
||||
|
||||
services:
|
||||
xwiki:
|
||||
image: xwiki:stable-postgres-tomcat
|
||||
dns:
|
||||
- 1.1.1.1
|
||||
- 1.0.0.1
|
||||
- 2606:4700:4700::1111
|
||||
- 2606:4700:4700::1001
|
||||
environment:
|
||||
DB_HOST: postgresql
|
||||
DB_DATABASE: xwiki_db
|
||||
DB_USER: xwiki_user
|
||||
{{- if .Values.DB_USER_PASS}}
|
||||
DB_PASSWORD: ${DB_USER_PASS}
|
||||
{{- end}}
|
||||
labels:
|
||||
io.rancher.container.pull_image: always
|
||||
{{- if .Values.HOST_LABEL}}
|
||||
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
||||
{{- end}}
|
||||
traefik.enable: true
|
||||
### Start Web Segment
|
||||
traefik.web.frontend.entryPoints: http, https
|
||||
traefik.web.frontend.headers.forceSTSHeader: true
|
||||
traefik.web.frontend.headers.referrerPolicy: no-referrer # Security enhancement (Prevents leaking of referer information)
|
||||
traefik.web.frontend.headers.SSLRedirect: true
|
||||
traefik.web.frontend.headers.STSPreload: true
|
||||
traefik.web.frontend.headers.STSSeconds: 15552000
|
||||
traefik.web.frontend.passHostHeader: true
|
||||
traefik.web.frontend.rule: "Host:${TRAEFIK_HOST}" # HostRegexp:${TRAEFIK_HOST},{subdomain:.+}.${TRAEFIK_HOST}
|
||||
traefik.web.port: "8080"
|
||||
### End Web Segment
|
||||
links:
|
||||
- postgresql
|
||||
restart: on-failure
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
|
||||
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
|
||||
- /Persistent/${DATA_DIR}/XWiki:/usr/local/xwiki
|
||||
postgresql:
|
||||
image: postgres:alpine
|
||||
dns:
|
||||
- 1.1.1.1
|
||||
- 1.0.0.1
|
||||
- 2606:4700:4700::1111
|
||||
- 2606:4700:4700::1001
|
||||
environment:
|
||||
POSTGRES_INITDB_ARGS: "--encoding=UTF8"
|
||||
POSTGRES_DB: xwiki_db
|
||||
{{- if .Values.DB_ROOT_PASS}}
|
||||
POSTGRES_ROOT_PASSWORD: ${DB_ROOT_PASS}
|
||||
{{- end}}
|
||||
POSTGRES_USER: xwiki_user
|
||||
{{- if .Values.DB_USER_PASS}}
|
||||
POSTGRES_PASSWORD: ${DB_USER_PASS}
|
||||
{{- end}}
|
||||
labels:
|
||||
io.rancher.container.pull_image: always
|
||||
{{- if .Values.HOST_LABEL}}
|
||||
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
||||
{{- end}}
|
||||
restart: on-failure
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
|
||||
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
|
||||
- /Persistent/${DATA_DIR}/Database:/var/lib/postgresql/data
|
||||
@@ -1,50 +0,0 @@
|
||||
version: '2'
|
||||
catalog:
|
||||
name: XWiki
|
||||
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 of the host which containers should be deployed
|
||||
default: "host.id=Host3"
|
||||
required: false
|
||||
type: string
|
||||
|
||||
- variable: "TRAEFIK_HOST"
|
||||
label: "Public Host Domain"
|
||||
description: |
|
||||
The host that Traefik will use to provide public access.
|
||||
Separate multiple domains by using a comma.
|
||||
default: "subdomain.domain.tld"
|
||||
required: true
|
||||
type: string
|
||||
|
||||
- variable: "DB_ROOT_PASS"
|
||||
label: "Database Root Password"
|
||||
description: |
|
||||
A secure password to be used by the "root" database user.
|
||||
# default:
|
||||
required: false
|
||||
type: password
|
||||
|
||||
- variable: "DB_USER_PASS"
|
||||
label: "Database User Password"
|
||||
description: |
|
||||
A secure password to be used by the "xwiki_user" database user.
|
||||
# default:
|
||||
required: false
|
||||
type: password
|
||||
|
||||
- variable: "DATA_DIR"
|
||||
label: "Data Directory"
|
||||
description: |
|
||||
The directory to store persistent data for the stack.
|
||||
default: "Personal/XWiki"
|
||||
required: true
|
||||
type: string
|
||||
@@ -1,8 +0,0 @@
|
||||
name: XWiki
|
||||
description: |
|
||||
XWiki is a free wiki software platform written in Java with a design emphasis on extensibility.
|
||||
version: latest
|
||||
category: Wiki
|
||||
maintainer: WilliamMiceli
|
||||
# license:
|
||||
# projectURL:
|
||||
@@ -1,5 +0,0 @@
|
||||
# YOURLS
|
||||
|
||||
## Pre-Requisites
|
||||
|
||||
* Traefik deployed
|
||||
@@ -1,61 +0,0 @@
|
||||
version: '2'
|
||||
|
||||
services:
|
||||
yourls:
|
||||
image: yourls:apache
|
||||
dns: # Using Cloudflare DNS
|
||||
- 1.1.1.1
|
||||
- 1.0.0.1
|
||||
- 2606:4700:4700::1111
|
||||
- 2606:4700:4700::1001
|
||||
environment:
|
||||
YOURLS_DB_HOST: mysql
|
||||
YOURLS_DB_NAME: yourls_db
|
||||
YOURLS_DB_USER: yourls_user
|
||||
YOURLS_DB_PASS: ${DB_USER_PASS}
|
||||
YOURLS_SITE: https://${TRAEFIK_HOST}
|
||||
labels:
|
||||
io.rancher.container.pull_image: always
|
||||
{{- if .Values.HOST_LABEL}}
|
||||
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
||||
{{- end}}
|
||||
traefik.enable: true
|
||||
### Start Web Segment
|
||||
traefik.web.frontend.entryPoints: http,https
|
||||
traefik.web.frontend.headers.forceSTSHeader: true
|
||||
traefik.web.frontend.headers.referrerPolicy: no-referrer # Security enhancement (Prevents leaking of referer information)
|
||||
traefik.web.frontend.headers.SSLRedirect: true
|
||||
traefik.web.frontend.headers.STSPreload: true
|
||||
traefik.web.frontend.headers.STSSeconds: 15552000
|
||||
traefik.web.frontend.rule: Host:${TRAEFIK_HOST}
|
||||
traefik.web.port: "80"
|
||||
### End Web Segment
|
||||
links:
|
||||
- mysql
|
||||
restart: on-failure
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
|
||||
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
|
||||
mysql:
|
||||
image: mysql:5
|
||||
dns: # Using Cloudflare DNS
|
||||
- 1.1.1.1
|
||||
- 1.0.0.1
|
||||
- 2606:4700:4700::1111
|
||||
- 2606:4700:4700::1001
|
||||
environment:
|
||||
MYSQL_DATABASE: yourls_db
|
||||
MYSQL_ROOT_PASSWORD: ${DB_ROOT_PASS}
|
||||
MYSQL_USER: yourls_user
|
||||
MYSQL_PASSWORD: ${DB_USER_PASS}
|
||||
labels:
|
||||
io.rancher.container.pull_image: always
|
||||
{{- if .Values.HOST_LABEL}}
|
||||
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
||||
{{- end}}
|
||||
traefik.enable: false
|
||||
restart: on-failure
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
|
||||
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
|
||||
- /Persistent/${DATA_DIR}/Database:/var/lib/mysql
|
||||
@@ -1,49 +0,0 @@
|
||||
version: '2'
|
||||
catalog:
|
||||
name: YOURLS
|
||||
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=Host1"
|
||||
required: false
|
||||
type: string
|
||||
|
||||
- variable: "TRAEFIK_HOST"
|
||||
label: "Public Host Domain"
|
||||
description: |
|
||||
The host that Traefik will use to provide public access.
|
||||
default: "subdomain.domain.tld"
|
||||
required: true
|
||||
type: string
|
||||
|
||||
- variable: "DB_ROOT_PASS"
|
||||
label: "Database Root Password"
|
||||
description: |
|
||||
A secure password to be used by the "root" database user.
|
||||
# default:
|
||||
required: true
|
||||
type: password
|
||||
|
||||
- variable: "DB_USER_PASS"
|
||||
label: "Database User Password"
|
||||
description: |
|
||||
A secure password to be used by the "yourls_user" database user.
|
||||
# default:
|
||||
required: true
|
||||
type: password
|
||||
|
||||
- variable: "DATA_DIR"
|
||||
label: "Data Directory"
|
||||
description: |
|
||||
The directory to store persistent data for the stack.
|
||||
default: "Personal/YOURLS"
|
||||
required: true
|
||||
type: string
|
||||
@@ -1,8 +0,0 @@
|
||||
name: YOURLS
|
||||
description: |
|
||||
Status: EXPERIMENTAL
|
||||
version: latest
|
||||
# category:
|
||||
maintainer: WilliamMiceli
|
||||
# license:
|
||||
# projectURL:
|
||||
Reference in New Issue
Block a user