Advertisement
Guest User

Untitled

a guest
Oct 25th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1.  
  2. # Name of database to use. Default is otrs.
  3. OTRS_DB_NAME=otrs
  4.  
  5. # Hostname or IP address of the database server. Default is mariadb.
  6. OTRS_DB_HOST=mariadb
  7.  
  8. # Port of the database server. Default is 3306.
  9. OTRS_DB_PORT=3306
  10.  
  11. # Database user. Default is otrs.
  12. OTRS_DB_USER=otrs
  13.  
  14. # otrs user database password. Default password is changeme
  15. OTRS_DB_PASSWORD=changeme
  16.  
  17. # Database root password so it can be setup. Default password is changeme.
  18. MYSQL_ROOT_PASSWORD=changeme
  19.  
  20. #####################################
  21. # OTRS Configuration
  22. #####################################
  23.  
  24. # Container startup mode, possible values:
  25. # - no : Starts OTRS ready to be configured.
  26. # - yes : Runs the OTRS installer.
  27. # - restore : Restores the backup specified by OTRS_BACKUP_DATE environment variable. Please check the README file for details.
  28. OTRS_INSTALL=yes
  29.  
  30. # On backup restore it drops the otrs database it if already exists (by default the container will fail if the database already exists).
  31. # OTRS_DROP_DATABASE=no
  32.  
  33. # root@localhost user password. Default password is changeme
  34. OTRS_ROOT_PASSWORD=changeme
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement