-
Notifications
You must be signed in to change notification settings - Fork 553
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added FreeScout Helpdesk #1082
Open
houndbee
wants to merge
2
commits into
caprover:master
Choose a base branch
from
houndbee:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Added FreeScout Helpdesk #1082
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
captainVersion: 4 | ||
services: | ||
$$cap_appname-db: | ||
image: $$cap_db_type:$$cap_database_version | ||
volumes: | ||
- $$cap_appname-db-data:/var/lib/mysql | ||
restart: always | ||
environment: | ||
MYSQL_ROOT_PASSWORD: $$cap_db_pass | ||
MYSQL_DATABASE: freescout | ||
MYSQL_USER: $$cap_db_user | ||
MYSQL_PASSWORD: $$cap_db_pass | ||
caproverExtra: | ||
notExposeAsWebApp: 'true' | ||
|
||
$$cap_appname: | ||
depends_on: | ||
- $$cap_appname-db | ||
image: tiredofit/freescout:$$cap_freescout_version | ||
volumes: | ||
- $$cap_appname-data:/www/html | ||
restart: always | ||
environment: | ||
DB_HOST: srv-captain--$$cap_appname-db | ||
DB_NAME: freescout | ||
DB_USER: $$cap_db_user | ||
DB_PASS: $$cap_db_pass | ||
SITE_URL: https://$$cap_appname.$$cap_root_domain | ||
ADMIN_EMAIL: $$cap_freescout_admin_email | ||
ADMIN_PASS: $$cap_freescout_admin_pass | ||
|
||
caproverOneClickApp: | ||
variables: | ||
- id: $$cap_db_user | ||
label: Database user | ||
defaultValue: freescout | ||
validRegex: /^([a-zA-Z0-9])+$/ | ||
- id: $$cap_db_pass | ||
label: Database password | ||
description: '' | ||
validRegex: /^(\w|[^\s"'\\])+$/ | ||
defaultValue: $$cap_gen_random_hex(16) | ||
- id: $$cap_freescout_version | ||
label: FreeScout Version | ||
defaultValue: 'php8.3-1.17.55' | ||
description: | ||
validRegex: /^([^\s^\/])+$/ | ||
- id: $$cap_db_type | ||
label: Database Type | ||
defaultValue: mariadb | ||
description: You can either choose mariadb or mysql, you need to change the version according to which DB is selected. It is case sensitive. | ||
validRegex: /^(mysql|mariadb)$/ | ||
- id: $$cap_database_version | ||
label: Database Version, default is mariadb | ||
defaultValue: '10.4' | ||
description: Check out the Docker pages for the valid tags https://hub.docker.com/r/library/mysql/tags/ or https://hub.docker.com/_/mariadb?tab=tags | ||
validRegex: /^([^\s^\/])+$/ | ||
- id: $$cap_freescout_admin_email | ||
label: admin e-mail | ||
defaultValue: [email protected] | ||
description: admin e-mail address | ||
- id: $$cap_freescout_admin_pass | ||
label: admin password | ||
validRegex: /^(\w|[^\s"'\\])+$/ | ||
defaultValue: $$cap_gen_random_hex(16) | ||
description: admin password | ||
|
||
instructions: | ||
start: >- | ||
FreeScout is the super lightweight and powerful free open source help desk and shared inbox written in PHP (Laravel framework). It is a self hosted clone of HelpScout. Now you can enjoy free Zendesk & Help Scout without giving up privacy or locking you into a service you don't control. | ||
end: > | ||
FreeScout is deployed and available as https://$$cap_appname.$$cap_root_domain. Please enable HTTPS. | ||
|
||
IMPORTANT: It will take up to 2 minutes for Freescout to be ready. Before that, you might see a 502 error page. | ||
displayName: FreeScout | ||
isOfficial: true | ||
description: Open Source Helpdesk & Shared Mailbox | ||
documentation: https://github.com/tiredofit/docker-freescout |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's remove this as it adds little value and users cannot upgrade simply by deploying new image. This is the directory where the source code lives.