Zammad custom deployment
This document provides a step by step guide to download and deploy our custom Zammad configuration.
Step 1
Connect to the VM and download the custom repository
git clone https://github.com/PeopleTechnologyDevs/zammad-docker-compose
Step 2
Create the .env file by copying the .env.example
cat .env.example > .env
Step 3
Edit the .env file and put the following settings
ZAMMAD_AUTOCONFIG_URL="http://zammad-nginx:8080"
ADMIN_AUTOCONFIG_EMAIL="admin@people-t.com"
ADMIN_AUTOCONFIG_PASSWORD="***"
ADMIN_AUTOCONFIG_FIRSTNAME="People"
ADMIN_AUTOCONFIG_LASTNAME="Admin"
Step 4
Start the service
docker compose up