diff options
| author | Bukhori Muhammad Aqid <[email protected]> | 2021-04-10 19:23:56 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-04-10 08:23:56 -0400 |
| commit | aa2c9852533798416c48007d5337f546f96d1784 (patch) | |
| tree | 0f009ef2f81ccf0d4ebe3d8405e318113cb82a16 /public/v4/apps/fider.yml | |
| parent | 48d2870e6e5769acce66a4a14712968f347683bf (diff) | |
| download | caprover-one-click-apps-aa2c9852533798416c48007d5337f546f96d1784.tar.gz caprover-one-click-apps-aa2c9852533798416c48007d5337f546f96d1784.zip | |
Adding Fider - No Database (#381)
* [add] fider
* [update] fider host domain
* [update] PR feedback
Diffstat (limited to 'public/v4/apps/fider.yml')
| -rw-r--r-- | public/v4/apps/fider.yml | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/public/v4/apps/fider.yml b/public/v4/apps/fider.yml new file mode 100644 index 0000000..42cc6d9 --- /dev/null +++ b/public/v4/apps/fider.yml @@ -0,0 +1,51 @@ +captainVersion: 4 +services: + $$cap_appname: + documentation: Taken from https://hub.docker.com/r/getfider/fider/ + image: getfider/fider:$$cap_fider_version + restart: always + environment: + HOST_DOMAIN: '$$cap_appname.$$cap_root_domain' + DATABASE_URL: $$cap_db_url + JWT_SECRET: $$cap_gen_random_hex(16) + EMAIL_NOREPLY: $$cap_email_noreply + EMAIL_SMTP_HOST: $$cap_smtp_host + EMAIL_SMTP_PORT: $$cap_smtp_port + EMAIL_SMTP_USERNAME: $$cap_smtp_user + EMAIL_SMTP_PASSWORD: $$cap_smtp_pass + caproverExtra: + containerHttpPort: '3000' +caproverOneClickApp: + variables: + - id: $$cap_db_url + label: Fider database URL + description: Postgres database connection URL for Fider, for example "postgres://username:password@srv-captain--mypostgres:5432/fider?sslmode=disable" + - id: $$cap_fider_version + label: Fider Version + defaultValue: 0.18.1 + description: https://hub.docker.com/r/getfider/fider/tags + validRegex: /^([^\s^\/])+$/ + - id: $$cap_email_noreply + label: SMTP sender email + description: The sender email address for your outgoing mail + - id: $$cap_smtp_host + label: SMPT host + description: The host for your smtp server + - id: $$cap_smtp_port + label: SMTP port + description: The port for your smtp server + - id: $$cap_smtp_user + label: SMTP user + description: The user for your smtp server + - id: $$cap_smtp_pass + label: SMTP password + description: The password for your smtp server + instructions: + start: |- + Fider is a platform to collect and organize customer feedback. Let your customers share, vote and discuss on suggestions they have to make your product even better. + end: |- + Fider has been successfully deployed! Enable HTTPS after installation. + displayName: Fider - No Database + isOfficial: true + description: Fider is a platform to collect and organize customer feedback. + documentation: See https://getfider.com/docs/hosting-instance |
