forked from phelset/docker-osticket
-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i need a composefile for osticket and its database #58
Comments
Here is what I am using, obviously replace out version: '3.4'
services:
mysql:
container_name: mysql
restart: unless-stopped
image: mysql:5.7.22
environment:
MYSQL_ROOT_PASSWORD: secret
MYSQL_DATABASE: osticket
MYSQL_PASSWORD: secret
MYSQL_USER: osticket
volumes:
- ./mysql/:/var/lib/mysql
ports:
- 3306:3306
osticket:
container_name: osticket
restart: unless-stopped
image: campbellsoftwaresolutions/osticket
depends_on:
- mysql
environment:
INSTALL_SECRET: secret
MYSQL_HOST: mysql
MYSQL_PASSWORD: secret
CRON_INTERVAL: 1
ports:
- 8080:80 |
Thank you :) |
Thank, here my little contribution: https://gist.github.com/WilfredLemus/a827e9cd3f151d9e0147c4dd5ff2bdab |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: