Advertisement
Guest User

docker-otrs-env

a guest
Nov 11th, 2018
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. #####################################
  2. # Database Configuration
  3. #####################################
  4.  
  5. # Name of database to use. Default is otrs.
  6. #OTRS_DB_NAME=otrs
  7.  
  8. # Hostname or IP address of the database server. Default is mariadb.
  9. #OTRS_DB_HOST=mariadb
  10.  
  11. # Port of the database server. Default is 3306.
  12. #OTRS_DB_PORT=3306
  13.  
  14. # Database user. Default is otrs.
  15. #OTRS_DB_USER=otrs
  16.  
  17. # otrs user database password. Default password is changeme
  18. OTRS_DB_PASSWORD=123456
  19.  
  20. # Database root password so it can be setup. Default password is changeme.
  21. MYSQL_ROOT_PASSWORD=123456
  22.  
  23. #####################################
  24. # OTRS Configuration
  25. #####################################
  26.  
  27. # Container startup mode, possible values:
  28. # - no : Starts OTRS ready to be configured.
  29. # - yes : Runs the OTRS installer.
  30. # - restore : Restores the backup specified by OTRS_BACKUP_DATE environment variable. Please check the README file for details.
  31. OTRS_INSTALL=no
  32. OTRS_BACKUP_DATE=2018-11-08_09-35
  33. OTRS_DEBUG=no
  34.  
  35. # On backup restore it drops the otrs database it if already exists (by default the container will fail if the database already exists).
  36. OTRS_DROP_DATABASE=yes
  37.  
  38. # root@localhost user password. Default password is changeme
  39. OTRS_ROOT_PASSWORD=123456
  40.  
  41. # Sets the container's hostname (auto-generated if not defined).
  42. #OTRS_HOSTNAME=otrs_app
  43.  
  44. # Set the default language for both agent and customer interfaces (For example, "es" for spanish).
  45. OTRS_LANGUAGE=fr
  46.  
  47. # Sets the default timezone.
  48. #OTRS_TIMEZONE=UTC
  49.  
  50. # Sets the starting point for the ticket counter.
  51. #OTRS_TICKET_COUNTER=
  52.  
  53. # Sets the ticket number generator, possible values are : DateChecksum, Date, AutoIncrement or Random.
  54. #OTRS_NUMBER_GENERATOR=DateChecksum
  55.  
  56. # To disable the OTRS ASCII logo at container startup.
  57. #SHOW_OTRS_LOGO=no
  58.  
  59. #####################################
  60. # EXPERIMENTAL !!
  61. # Test at your own risk
  62. #####################################
  63. ########## Version Upgrade ##########
  64.  
  65. # Do a MAJOR version upgrade. Possible values: yes, no (default). Please check the README file for details.
  66. #OTRS_UPGRADE=no
  67.  
  68. #####################################
  69. # SMTP Relay Configuration
  70. #####################################
  71.  
  72. # Server address of the SMTP server to use.
  73. #SMTP_SERVER=smtp.domaine.local
  74.  
  75. # Port address of the SMTP server to use. (Optional, Default value: 587)
  76. SMTP_PORT=25
  77.  
  78. # Username to authenticate with.
  79. #SMTP_USERNAME=
  80.  
  81. # Password of the SMTP user.
  82. #SMTP_PASSWORD=
  83.  
  84. # Server hostname for the Postfix container. Emails will appear to come from the hostname's domain.
  85. #SERVER_HOSTNAME=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement