OSTicket
Ticket app to help organize plex issues for working
osticket:
image: devinsolutions/osticket
container_name: "osticket"
restart: always
networks:
web:
ipv4_address: 172.18.0.12
links:
- mysql:mysql
- traefik
environment:
- MYSQL_HOST=mysql
- MYSQL_DATABASE=osticket_db
- MYSQL_USER=${USERNAME}
- MYSQL_PASSWORD=${PASSWORD}
- TZ=${TZ}
labels:
- "traefik.enable=true"
- "traefik.http.routers.osticket-web.rule=Host(`help.kevinsloan.net`)"
- "traefik.http.routers.osticket-web.entrypoints=web"
- "traefik.http.routers.osticket-secured.rule=Host(`help.kevinsloan.net`)"
- "traefik.http.routers.osticket-secured.tls=true"
- "traefik.http.routers.osticket-secured.entrypoints=web-secured"
No Comments