This will build a Docker Image for Freescout - An open source Helpscout / Zendesk alternative.
- Automatically installs and sets up installation upon first start
- About
- Maintainer
- Table of Contents
- Prerequisites and Assumptions
- Installation
- Configuration
- Maintenance
- Support
- License
- References
- Assumes you are using some sort of SSL terminating reverse proxy such as:
- Requires access to a MySQL/MariaDB Server
Clone this repository and build the image with docker build -t (imagename) .
Builds of the image are available on Docker Hub and is the recommended method of installation.
docker pull tiredofit/freescout:(imagetag)
The following image tags are available along with their tagged release based on what's written in the Changelog:
Container OS | Tag |
---|---|
Alpine | :latest |
-
The quickest way to get started is using docker-compose. See the examples folder for a working docker-compose.yml that can be modified for development or production use.
-
Set various environment variables to understand the capabilities of this image.
-
Map persistent storage for access to configuration and data files for backup.
-
Make networking ports available for public access if necessary
The first boot can take from 2 minutes - 5 minutes depending on your CPU to setup the proper schemas.
- Login to the web server and enter in your admin email address, admin password and start configuring the system!
The following directories are used for configuration and can be mapped for persistent storage.
Directory | Description |
---|---|
/www/logs |
Nginx and PHP Log files |
/assets/custom |
(Optional) Copy source code over existing source code in /www/html upon container start. Use exact file/folder structure |
/assets/custom-scripts |
(Optional) If you want to execute custom scripting, place scripts here with extension .sh |
/assets/modules |
(Optional) If you want to add additional modules outside of the source tree, add them here |
/www/html |
(Optional) If you want to expose the Freescout sourcecode and enable Self Updating, expose this volume |
OR | |
/data |
Hold onto your persistent sessions and cache between container restarts |
This image relies on an Alpine Linux or Debian Linux base image that relies on an init system for added capabilities. Outgoing SMTP capabilities are handlded via msmtp
. Individual container performance monitoring is performed by zabbix-agent. Additional tools include: bash
,curl
,less
,logrotate
,nano
,vim
.
Be sure to view the following repositories to understand all the customizable options:
Image | Description |
---|---|
OS Base | Customized Image based on Alpine Linux |
Nginx | Nginx webserver |
PHP-FPM | PHP Interpreter |
Parameter | Description | default |
---|---|---|
ADMIN_EMAIL |
Administrator Email Address - Needed for logging in | |
ADMIN_FIRST_NAME |
Admin user First Name | Admin |
ADMIN_LAST_NAME |
Admin user First Name | User |
ADMIN_PASS |
Administrator Password - Needed for Logging in | |
APPLICATION_NAME |
Change default application name - Default Freescout |
freescout |
DB_HOST |
Host or container name of MariaDB Server e.g. freescout-db |
|
DB_PORT |
MariaDB Port | 3306 |
DB_NAME |
MariaDB Database name e.g. freescout |
|
DB_USER |
MariaDB Username for above Database e.g. freescout |
|
DB_PASS |
MariaDB Password for above Database e.g. password |
|
DISPLAY_ERRORS |
Display Errors on Website | FALSE |
ENABLE_AUTO_UPDATE |
If coming from an earlier version of image, automatically update it to latest Freescout release | TRUE |
ENABLE_SSL_PROXY |
If using SSL reverse proxy force application to return https URLs TRUE or FALSE |
|
SETUP_TYPE |
Automatically edit configuration after first bootup AUTO or MANUAL |
AUTO |
SITE_URL |
The url your site listens on example https://freescout.example.com |
The following ports are exposed.
Port | Description |
---|---|
80 |
HTTP |
For debugging and maintenance purposes you may want access the containers shell.
bash docker exec -it (whatever your container name is) bash
These images were built to serve a specific need in a production environment and gradually have had more functionality added based on requests from the community.
- The Discussions board is a great place for working with the community on tips and tricks of using this image.
- Consider sponsoring me personalized support.
- Please, submit a Bug Report if something isn't working as expected. I'll do my best to issue a fix in short order.
- Feel free to submit a feature request, however there is no guarantee that it will be added, or at what timeline.
- Consider sponsoring me regarding development of features.
- Best effort to track upstream changes, More priority if I am actively using the image in a production environment.
- Consider sponsoring me for up to date releases.
MIT. See LICENSE for more details.