mariadb-alpine
mariadb-alpine copied to clipboard
A tiny and fast MariaDB container
It's always better to run an application under unprivileged user instead of root ;-)
Fix my.cnf mapping cause mysql start with `port:0` (introduced by mariadb-server.cnf) Deletions information output Draft template for docker-compose.yml Make `Port` `mysqld-commandline-options` configurable
I had the problem that `sleep 1` wasn't enough at some point and `eval "${MYSQL_CMD}" < /tmp/init` was executed before th mysql daemon was started, so I searched how I...
I have the following `docker-compose.yml` setup: ```yaml services: db: image: jbergstroem/mariadb-alpine:10.4.15 environment: MYSQL_ROOT_PASSWORD: root MYSQL_DATABASE: test volumes: - ./db:/docker-entrypoint-initdb.d ports: - "3306:3306" ``` At intial startup it loads the file...
The health check (in this case in portainer) is showing 'unhealthy' after updating from 10.4.x to 10.6.x series. The DB itself works fine.
When running tests and commands fail in docker there is occasionally issues with not exiting the command properly, leaving the CI pending for hours.
It seems that sometimes in CI the first test fails to finish. No great insights as of yet. Hopefully switching test runner can bring a bit more insight.
As part of a PR lifecycle, add info about the resulting container file size. This will be especially useful as features or versions are bumped. Not sure if to add...
On windows under certain permission conditions (dependent on folder location) there is the following warning at container startup: ``` Warning: World-writable config file '/etc/my.cnf.d/my.cnf' is ignored ``` On Windows this...
Create a timed ci job that checks alpine repos for available versions. This could also open an issue or even a PR should a new version be found.