Skip to content
Snippets Groups Projects
Select Git revision
  • 96f018d17faf868c1d2b9c5ee4751aa2316c1bc0
  • main default protected
  • dev protected
  • v0.9.2
  • v0.9.1
5 results

sql.config

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    sql.config 1.36 KiB
    # ** header v3.0
    # This file is a part of the CaosDB Project.
    #
    # Copyright (C) 2019 Daniel Hornung, Göttingen
    #
    # This program is free software: you can redistribute it and/or modify
    # it under the terms of the GNU Affero General Public License as
    # published by the Free Software Foundation, either version 3 of the
    # License, or (at your option) any later version.
    #
    # This program is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    # GNU Affero General Public License for more details.
    #
    # You should have received a copy of the GNU Affero General Public License
    # along with this program. If not, see <https://www.gnu.org/licenses/>.
    #
    # ** end header
    
    # Default settings for Docker image installation
    
    # Commands
    MYSQL_CMD=/usr/bin/mysql
    MYSQLADMIN_CMD=/usr/bin/mysqladmin
    MYSQLDUMP_CMD=/usr/bin/mysqldump
    
    # MySQL Connection
    MYSQL_HOST=sqldb
    MYSQL_PORT=3306
    MYSQL_USER=root
    MYSQL_USER_PASSWORD=caosdb1234
    
    # DATABASE
    DATABASE_NAME=caosdb
    DATABASE_USER=caosdb
    DATABASE_USER_PW=random1234
    
    # A comma-separated list of hosts from which MySQL will accept logins. This
    # option follows the MySQL-style for host-names and ip addresses. E.g. `%` is a
    # wildcard for all hosts, so `192.168.0.%` permits logins from the local
    # network.
    DATABASE_USER_HOST_LIST=%,