Skip to content
Snippets Groups Projects

remove axels local ini file

Merged Hahn Axel (hahn) requested to merge desktop-notification into master
1 file
+ 0
44
Compare changes
  • Side-by-side
  • Inline
# ======================================================================
#
# DOCKER MYSQL INSTANCE ON LOCAL EXPOSED PORT
#
# ======================================================================
[detect]
# ----------------------------------------------------------------------
# what to detect
# ----------------------------------------------------------------------
binary = 'mysql,mysqldump'
# a running process that must be found
process = 'mysqld|mariadb'
# a port that must be open on a given host
tcp-port = 13306
tcp-target = localhost
# process that opens a port (see netstat -tulpen) - works for local services only
# "slirp4netns" is docker network stack
# "rootlesskit" is docker too
tcp-process = 'rootlesskit'
[set]
# ----------------------------------------------------------------------
# data to apply if it was found
# ----------------------------------------------------------------------
su = ''
dbuser = 'root'
dbpassword = '12345678'
# not soo nice - these information is seen in the process list
params = '--port={tcp-port} --password={dbpassword} --user={dbuser} --host={tcp-target} --skip-ssl'
# https://dev.mysql.com/doc/refman/8.0/en/environment-variables.html
# das PW sollte man auch nicht in MYSQL_PWD ablegen
# env = 'export var1="happy meal"; export var2="new"; export var3="year!"'
env = ''
# ----------------------------------------------------------------------
Loading