Jonas Fluhrer

Results 12 comments of Jonas Fluhrer

It would also be useful if you could download it as a live photo into your gallery directly from the context menu of the file in a folder without having...

I just reproduced this on **another** Windows machine... It still starts with `port: 0` when the container imports the `./db/test.sql`, so I guess it is happening 100% of the time:...

Well, if you want to support multiple branches of mariadb I think you want to fix this... And since the [default value](https://mariadb.com/docs/reference/mdb/system-variables/skip_networking/#parameters) of `--skip-networking` is `OFF` anyway and I am...

There seems to be [some problems](https://github.com/jbergstroem/mariadb-alpine/pull/57/checks?check_run_id=1862144321#step:4:38) in the automatic testing, but I think they are unrelated to my change: ``` #7 0.555 ERROR: unsatisfiable constraints: #7 0.570 mariadb-10.4.17-r1: #7 0.570...

added a second commit that uses `mysqladmin shutdown` to shutdown the temporary mysql daemon because the `kill` command that was used before doesn't wait for mysql to be properly shut...

@jbergstroem I just rebased against latest master. Do you want me to add `/usr/bin/mysqladmin` to `TO_KEEP` in `sh/clean.sh` or was it a question if I did?

I just replaced the mysqladmin dependency with posix functionality. It isn't as elegant as before since I am relying on the output of `mysqld` but we are saving about 3.5MB...

just added the commit for the fix for issue #62 to this PR since I somehow was unable to create another PR with just the changes for this fix in...

You might want to install the exact version like that: ``` npm install --save-exact [email protected] ``` Otherwise it will install another version when reinstalling the dependencies with `npm install` later.