Skip to content

Commit dd173ca

Browse files
authored
Merge pull request #744 from robinlehrmann/chore/remove-double-quotes-mysql-database
remove double quotes for mysql database
2 parents 93eff7c + ec12cb7 commit dd173ca

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
image: "mariadb:${{ matrix.mariadb-version }}"
7878
env:
7979
MYSQL_ALLOW_EMPTY_PASSWORD: yes
80-
MYSQL_DATABASE: "eventstore"
80+
MYSQL_DATABASE: eventstore
8181

8282
options: >-
8383
--health-cmd "mariadb-admin ping --silent"

docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ services:
1111
image: mysql:8
1212
environment:
1313
- MYSQL_ALLOW_EMPTY_PASSWORD="yes"
14-
- MYSQL_DATABASE="eventstore"
14+
- MYSQL_DATABASE=eventstore
1515
ports:
1616
- 3306:3306

0 commit comments

Comments
 (0)