Last active
January 21, 2020 16:44
-
-
Save phischl/90e74def6d5a08b030bd0499a74a17bb to your computer and use it in GitHub Desktop.
snipe-it.env for docker-compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Mysql Parameters | |
MYSQL_PORT_3306_TCP_ADDR=snipe-mysql | |
MYSQL_PORT_3306_TCP_PORT=3306 | |
MYSQL_ROOT_PASSWORD=YOUR_SUPER_SECRET_PASSWORD | |
MYSQL_DATABASE=snipeit | |
MYSQL_USER=snipeit | |
MYSQL_PASSWORD=YOUR_snipeit_USER_PASSWORD | |
# Email Parameters | |
# - the hostname/IP address of your mailserver | |
MAIL_PORT_587_TCP_ADDR=smtp.whatever.com | |
#the port for the mailserver (probably 587, could be another) | |
MAIL_PORT_587_TCP_PORT=587 | |
# the default from address, and from name for emails | |
[email protected] | |
MAIL_ENV_FROM_NAME=Your Full Email Name | |
# - pick 'tls' for SMTP-over-SSL, 'tcp' for unencrypted | |
MAIL_ENV_ENCRYPTION=tcp | |
# SMTP username and password | |
MAIL_ENV_USERNAME=your_email_username | |
MAIL_ENV_PASSWORD=your_email_password | |
# Snipe-IT Settings | |
APP_ENV=production | |
APP_DEBUG=false | |
APP_KEY=<<Fill in Later!>> | |
APP_URL=http://127.0.0.1:80 | |
APP_TIMEZONE=US/Pacific | |
APP_LOCALE=en |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment