Skip to content

Commit 9378482

Browse files
Merge pull request #9694 from circleci/customise-database
add example of configuring mysql
2 parents fee3c07 + 6d6039b commit 9378482

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

docs/guides/modules/orchestrate/pages/databases.adoc

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,23 @@ Redis also has a CLI available: `sudo apt-get install redis-tools ; while ! redi
135135
136136
* Other services, such as web servers: `+dockerize -wait http://localhost:80 -timeout 1m+`
137137
138+
=== Custom MySQL configuration
139+
140+
If you are using the CircleCI MySQL Docker image, you can customize the configuration using the xref:reference:ROOT:configuration-reference.adoc#docker[`command` key]. For example:
141+
142+
[,yml]
143+
----
144+
145+
version: 2.1
146+
147+
jobs:
148+
build:
149+
docker:
150+
- image: cimg/go:1.25.3
151+
- image: cimg/mysql:8.0
152+
command: mysqld --performance-schema=OFF
153+
----
154+
138155
[#see-also]
139156
== See also
140157

0 commit comments

Comments
 (0)