We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the feature
The mariadb container allows to bind custom configuration files:
We could ship a piler.cnf with the recommended settings from the FAQ.
piler.cnf
mysql: image: mariadb:11.1.2 container_name: mysql restart: unless-stopped cap_drop: - ALL cap_add: - dac_override - setuid - setgid environment: - MYSQL_DATABASE=piler - MYSQL_USER=piler - MYSQL_PASSWORD=piler123 - MYSQL_RANDOM_ROOT_PASSWORD=yes command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci volumes: - db_data:/var/lib/mysql - ./piler.cnf:/etc/mysql/conf.d/piler.cnf:ro
The text was updated successfully, but these errors were encountered:
jsuto
Successfully merging a pull request may close this issue.
Describe the feature
The mariadb container allows to bind custom configuration files:
We could ship a
piler.cnf
with the recommended settings from the FAQ.The text was updated successfully, but these errors were encountered: