Maintained by Thijmen Heuvelink

osTicket is a widely used and trusted open source support ticketing system. Easily scale and streamline your customer service.

Docker Compose

Save the following contents as a docker-compose.yml file.

version: '3'
services:
  osticket:
    image: devinsolutions/osticket:latest
    container_name: osticket
    restart: unless-stopped
    ports: [ "80:80" ]
    environment:
      MYSQL_USER: osticket
      MYSQL_PASSWORD: b00kst4ck
      MYSQL_HOST: database
      MYSQL_DATABASE: osticket
  database:
    image: mysql:5.7
    container_name: database
    restart: unless-stopped
    environment:
      MYSQL_USER: osticket
      MYSQL_PASSWORD: b00kst4ck
      MYSQL_ROOT_PASSWORD: b00kst4ck
      MYSQL_DATABASE: osticket

Starting it

docker-compose up -d

This knowledge base serves as a valuable tool to simplify installations, troubleshoot common problems and to enhance the overall developer / admin experience. mail@thijmenheuvelink.nl - all rights reserved