Skip to content

Commit

Permalink
Fix the local integration test docker-compose file (#5695)
Browse files Browse the repository at this point in the history
What changed?
Moved updates to the docker-compose file used in the CI to the local
docker-compose.

Why?
This enables us to run the integration tests locally in docker

How did you test it?
Local tests

Potential risks

Release notes

Documentation Changes
  • Loading branch information
jakobht authored Mar 1, 2024
1 parent 48e9c04 commit f75fc71
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docker/buildkite/docker-compose-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
image: mysql:8.0
environment:
MYSQL_DATABASE: db
MYSQL_ROOT_PASSWORD: uber
MYSQL_ROOT_PASSWORD: cadence
volumes:
- ./mysql-init:/docker-entrypoint-initdb.d
expose:
Expand Down Expand Up @@ -163,6 +163,7 @@ services:
- "ES_SEEDS=elasticsearch"
- "KAFKA_SEEDS=kafka"
- "PERSISTENCE_TYPE=sql"
- "PERSISTENCE_PLUGIN=mysql"
- "TEST_TAG=esintegration"
depends_on:
- mysql
Expand Down Expand Up @@ -270,6 +271,7 @@ services:
- "ES_SEEDS=elasticsearch"
- "KAFKA_SEEDS=kafka"
- "PERSISTENCE_TYPE=sql"
- "PERSISTENCE_PLUGIN=mysql"
- "TEST_TAG=esintegration"
depends_on:
- mysql
Expand Down

0 comments on commit f75fc71

Please sign in to comment.