add osticket

This commit is contained in:
kev 2019-02-15 19:25:53 +08:00
parent 2749ce96ed
commit 4f92ff0a3a
2 changed files with 24 additions and 0 deletions

View File

@ -283,6 +283,7 @@ A collection of delicious docker recipes.
- [x] neo4j
- [x] odoo
- [x] osixia/openldap
- [x] campbellsoftwaresolutions/osticket
- [x] owncloud
- [x] phpmyadmin
- [x] pihole/pihole

View File

@ -0,0 +1,23 @@
osticket:
image: campbellsoftwaresolutions/osticket
ports:
- "8080:80"
links:
- mysql
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_USER=osticket
- MYSQL_PASSWORD=secret
- MYSQL_DATABASE=osticket
restart: always
mysql:
image: mysql:5.7
volumes:
- ./data:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_USER=osticket
- MYSQL_PASSWORD=secret
- MYSQL_DATABASE=osticket
restart: always