From edf78fed65f62606e9c71b99a2f4162b177374c4 Mon Sep 17 00:00:00 2001 From: Gabe Date: Sat, 2 May 2026 02:17:24 +0000 Subject: [PATCH] Add Ticketing_Containers/freescout/compose.yaml --- Ticketing_Containers/freescout/compose.yaml | 46 +++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 Ticketing_Containers/freescout/compose.yaml diff --git a/Ticketing_Containers/freescout/compose.yaml b/Ticketing_Containers/freescout/compose.yaml new file mode 100644 index 0000000..0b2f2a7 --- /dev/null +++ b/Ticketing_Containers/freescout/compose.yaml @@ -0,0 +1,46 @@ +services: + freescout-app: + image: tiredofit/freescout + container_name: freescout-app + + links: + - freescout-db + volumes: + ### If you want to perform customizations to the source and have access to it, then uncomment this line - This includes modules + #- ./data:/www/html + ### Or, if you just want to use Stock Freescout and hold onto persistent files like cache and session use this, one or the other. + - /srv/docker/freescout/data:/data + ### If you want to just keep the original source and add additional modules uncomment this line + - /srv/docker/freescout/modules:/www/html/Modules + - /srv/docker/freescout/logs/:/www/logs + environment: + - CONTAINER_NAME=freescout-app + - DB_HOST=freescout-db + - DB_NAME=freescout_db + - DB_USER=freescout # feel free to change this to a different user. + - DB_PASS= + - SITE_URL=https://support.gabesville.com #Change to your IP and Port listed above + - ADMIN_EMAIL=noreply@gabesville.com #Change to your email + - ADMIN_PASS=AReallyLongStrongPasswordWithNum3r5andComplex1ty #Change to a secure password + - ENABLE_SSL_PROXY=FALSE + - DISPLAY_ERRORS=FALSE + - TIMEZONE=America/Chicago # change to your timezone + restart: unless-stopped + + freescout-db: + image: tiredofit/mariadb + container_name: freescout-db + volumes: + - /srv/docker/freescout/db:/var/lib/mysql + environment: + - ROOT_PASS= + - DB_NAME=freescout_db + - DB_USER=freescout # must match the DB_USER in section above + - DB_PASS= + - CONTAINER_NAME=freescout-db + restart: unless-stopped + +networks: + default: + external: true + name: nginx \ No newline at end of file