summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClark Boylan <clark.boylan@gmail.com>2023-01-31 16:29:04 -0800
committerClark Boylan <clark.boylan@gmail.com>2023-01-31 16:29:04 -0800
commit04ba835bf253f736c830e0366ff6286754d84b95 (patch)
tree0df32f0861e02da9bd4e488b4fd7a3c9a12b8f73
parentc0985cff39e0ec2b9f7252e7d4a29e9979cda99f (diff)
downloadzuul-04ba835bf253f736c830e0366ff6286754d84b95.tar.gz
Switch our local testing docker-compose to mysql 8.0
Recently I debugged an issue that reproduced on mysql 8.0 on Jammy but not my local system. It took quite some time for me to realize that there was a difference in database versions which ended up being an important detail. Update our docker-compose to better match what we get in CI. Change-Id: I7de268acb81680f3e6b7d3b1aa057e7babd3fa62
-rw-r--r--tools/docker-compose.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/docker-compose.yaml b/tools/docker-compose.yaml
index 83ab9f930..05b4905e2 100644
--- a/tools/docker-compose.yaml
+++ b/tools/docker-compose.yaml
@@ -3,7 +3,7 @@ version: "3"
services:
mysql:
container_name: zuul-test-mysql
- image: mysql:5.7
+ image: mysql:8.0
environment:
- MYSQL_ROOT_PASSWORD=insecure_worker
ports: