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
Based on the following documentation it's cool to add the possibility to map database files into RAM. https://docs.gitlab.com/runner/executors/docker.html#mount-a-directory-in-ram
`[runners.docker]
[runners.docker.tmpfs] "/var/lib/mysql" = "rw,noexec"
[runners.docker.services_tmpfs] "/var/lib/mysql" = "rw,noexec"`
As docker/sdk generates a docker-compose.yml, here we have a volume or tmpfs mount definition, https://docs.docker.com/compose/compose-file/compose-file-v3/#long-syntax-3
The idea is to add a configuration to switch on/off mounting map database files into RAM.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Based on the following documentation it's cool to add the possibility to map database files into RAM.
https://docs.gitlab.com/runner/executors/docker.html#mount-a-directory-in-ram
`[runners.docker]
For the main container
[runners.docker.tmpfs]
"/var/lib/mysql" = "rw,noexec"
For services
[runners.docker.services_tmpfs]
"/var/lib/mysql" = "rw,noexec"`
As docker/sdk generates a docker-compose.yml, here we have a volume or tmpfs mount definition, https://docs.docker.com/compose/compose-file/compose-file-v3/#long-syntax-3
The idea is to add a configuration to switch on/off mounting map database files into RAM.
The text was updated successfully, but these errors were encountered: