-
Notifications
You must be signed in to change notification settings - Fork 373
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added LinkStack, Memo, Slash, and CODE templates. Updated Homepage re…
…pository. (#182)
- Loading branch information
Showing
11 changed files
with
563 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Install and setup instructions for Collabora Online Development Edition (CODE) and using it with NextCloud | ||
|
||
## Introduction | ||
|
||
Collabora Online is a powerful online office suite which you can integrate into your own infrastructure, it will allow you to open and edit documents from within your NextCloud environment. You should point a domain to your CODE instance. | ||
|
||
## Installation | ||
|
||
From the Docker template you will need to fill in: | ||
- `server_name` with the domain of your CODE instance, for example `collabora.mydomain.com` | ||
- `domain` with the domain of your NextCloud instance, for example `nextcloud\.mydomain\.com|test\.mydomain\.com|nc\.mydomain\.com` | ||
- `DONT_GEN_SSL_CERT` should have something in such as `true` or `1` | ||
- `extra_params` should be set as `--o:ssl.enable=false --o:ssl.termination=true` | ||
|
||
Additionally you can set: | ||
- `admin` as the administrator name you wish to use for the admin console, this is not something we will expose or you will need to access. | ||
- `password` as the administrator password you wish to use for the admin console, this is not something we will expose or you will need to access. | ||
- `dictionaries` by default only limited set of spelling dictionaries and thesauri are configured for CODE, mainly for performance reasons. The default set of languages is the following: de_DE en_GB en_US es_ES fr_FR it nl pt_BR pt_PT ru. With the dictionaries environment variable you can change this list. The dictionaries environment variable should contain the space separated list of language codes (optionally followed by country code). In order to save resources, it makes sense to load only those dictionaries that are actually needed. | ||
- `cert_domain` is unnecessary, when this environment variable is set (is not “”), then startup script will generate a new SSL certificate signed by a dummy CA for this domain, not for localhost | ||
|
||
## Setting up NextCloud | ||
|
||
You will need to install the app `Nextcloud Office`, then navigate to `Office` from within the `Administration settings`. | ||
|
||
Click `Use your own server` and enter the domain of your CODE instance in the `URL` field and click `Save` | ||
|
||
If NextCloud states Collabora Online server is reachable then you are all set. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
{ | ||
"categories": [ | ||
"Other", | ||
"tools" | ||
], | ||
"description": "Please see the install document at https://github.com/pi-hosted/pi-hosted/tree/master/docs for instructions on installing the template to work with NextCloud.", | ||
"env": [ | ||
{ | ||
"description": "User name for the admin console.", | ||
"default": "admin", | ||
"label": "username", | ||
"name": "username" | ||
}, | ||
{ | ||
"description": "Password for the admin console.", | ||
"default": "z#wYaMnS4!?9RK", | ||
"label": "password", | ||
"name": "password" | ||
}, | ||
{ | ||
"description": "When this environment variable is set (is not “”), then startup script will not generate a new SSL certificate signed by a dummy CA. It is useful, if you want to use your own SSL certificate for some reason.", | ||
"default": "", | ||
"label": "DONT_GEN_SSL_CERT", | ||
"name": "DONT_GEN_SSL_CERT" | ||
}, | ||
{ | ||
"description": "When this environment variable is set (is not “”), then startup script will generate a new SSL certificate signed by a dummy CA for this domain, not for localhost", | ||
"default": "", | ||
"label": "cert_domain", | ||
"name": "cert_domain" | ||
}, | ||
{ | ||
"description": "When this environment variable is set (is not “”), then its value will be used as server name in /etc/coolwsd/coolwsd.xml. Without this, CODE is not delivering a correct host for the websocket connection in case of a proxy in front of it.", | ||
"default": "collabora.domain.tld | http://IP:Port", | ||
"label": "server_name", | ||
"name": "server_name" | ||
}, | ||
{ | ||
"description": "By default only limited set of spelling dictionaries and thesauri are configured for CODE, mainly for performance reasons. The default set of languages is the following: de_DE en_GB en_US es_ES fr_FR it nl pt_BR pt_PT ru. With the dictionaries environment variable you can change this list. The dictionaries environment variable should contain the space separated list of language codes (optionally followed by country code). In order to save resources, it makes sense to load only those dictionaries that are actually needed.", | ||
"default": "", | ||
"label": "dictionaries", | ||
"name": "dictionaries" | ||
}, | ||
{ | ||
"description": "You can pass extra command line parameters to coolwsd via this environment variable. For example, if you want to start coolwsd without SSL, when you test or develop, the syntax is: -e ''extra_params=--o:ssl.enable=false''. To learn about all possible options, refer to the self-documented /etc/coolwsd/coolwsd.xml configuration file in the Docker image.", | ||
"default": "--o:ssl.enable=false --o:ssl.termination=true", | ||
"label": "extra_params", | ||
"name": "extra_params" | ||
}, | ||
{ | ||
"description": "The domain of your NextCloud instance.", | ||
"default": "nextcloud.domain.tld", | ||
"label": "domain", | ||
"name": "domain" | ||
} | ||
], | ||
"image_arm64": "collabora/code:latest", | ||
"image_amd64": "collabora/code:latest", | ||
"logo": "https://www.collaboraoffice.com/wp-content/uploads/2022/03/collabora-productivity-nav-icon.png", | ||
"name": "collabora", | ||
"officialDoc": "https://sdk.collaboraonline.com/docs/installation/CODE_Docker_image.html", | ||
"platform": "linux", | ||
"ports": [ | ||
"9980:9980/tcp" | ||
], | ||
"restart_policy": "unless-stopped", | ||
"title": "Collabora Online Development Edition (CODE)", | ||
"type": 1, | ||
"webpage": "https://www.collaboraoffice.com/" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{ | ||
"categories": [ | ||
"Other", | ||
"Web" | ||
], | ||
"description": "The Ultimate Link Management Solution", | ||
"env": [ | ||
{ | ||
"default": "name@domain.tld", | ||
"label": "SERVER_ADMIN", | ||
"name": "SERVER_ADMIN" | ||
}, | ||
{ | ||
"default": "HTTP_Domain", | ||
"label": "HTTP_SERVER_NAME", | ||
"name": "HTTP_SERVER_NAME" | ||
}, | ||
{ | ||
"default": "HTTPS_Domain", | ||
"label": "HTTPS_SERVER_NAME", | ||
"name": "HTTPS_SERVER_NAME" | ||
}, | ||
{ | ||
"default": "info", | ||
"label": "LOG_LEVEL", | ||
"name": "LOG_LEVEL" | ||
}, | ||
{ | ||
"default": "Europe/London", | ||
"label": "TZ", | ||
"name": "TZ" | ||
}, | ||
{ | ||
"default": "256M", | ||
"label": "PHP_MEMORY_LIMIT", | ||
"name": "PHP_MEMORY_LIMIT" | ||
}, | ||
{ | ||
"default": "8M", | ||
"label": "UPLOAD_MAX_FILESIZE", | ||
"name": "UPLOAD_MAX_FILESIZE" | ||
} | ||
], | ||
"image_arm64": "linkstackorg/linkstack:latest", | ||
"image_amd64": "linkstackorg/linkstack:latest", | ||
"logo": "https://raw.githubusercontent.com/LinkStackOrg/branding/main/logo/png/logo.png", | ||
"name": "LinkStack", | ||
"officialDoc": "https://github.com/linkstackorg/linkstack#readme", | ||
"platform": "linux", | ||
"ports": [ | ||
"8822:80/tcp", | ||
"8844:443/tcp" | ||
], | ||
"restart_policy": "unless-stopped", | ||
"title": "linkstack", | ||
"type": 1, | ||
"webpage": "https://linkstack.org/" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"categories": [ | ||
"Other", | ||
"Web" | ||
], | ||
"description": "A privacy-first, lightweight note-taking service.", | ||
"image_arm64": "ghcr.io/usememos/memos:latest", | ||
"image_amd64": "ghcr.io/usememos/memos:latest", | ||
"logo": "https://raw.githubusercontent.com/usememos/memos/main/web/public/logo.png", | ||
"name": "memos", | ||
"officialDoc": "https://github.com/usememos/memos", | ||
"platform": "linux", | ||
"ports": [ | ||
"5230:5230/tcp" | ||
], | ||
"restart_policy": "unless-stopped", | ||
"title": "Memos", | ||
"type": 1, | ||
"volumes": [ | ||
{ | ||
"bind": "/portainer/Files/AppData/Config/Memos", | ||
"container": "/var/opt/memos" | ||
} | ||
], | ||
"webpage": "https://usememos.com" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"categories": [ | ||
"Other", | ||
"Web" | ||
], | ||
"description": "Slash is an open source, self-hosted bookmarks and link sharing platform. It allows you to organize your links with tags, and share them with custom shortened URLs. Slash also supports team sharing of link libraries for easy collaboration.", | ||
"image_arm64": "yourselfhosted/slash:latest", | ||
"image_amd64": "yourselfhosted/slash:latest", | ||
"logo": "https://raw.githubusercontent.com/yourselfhosted/slash/main/frontend/web/public/logo.png", | ||
"name": "slash", | ||
"officialDoc": "https://github.com/yourselfhosted/slash", | ||
"platform": "linux", | ||
"ports": [ | ||
"5231:5231/tcp" | ||
], | ||
"restart_policy": "unless-stopped", | ||
"title": "Slash", | ||
"type": 1, | ||
"volumes": [ | ||
{ | ||
"bind": "/portainer/Files/AppData/Config/Slash", | ||
"container": "/var/opt//slash" | ||
} | ||
], | ||
"webpage": "https://github.com/yourselfhosted/slash" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.