Skip to content

Commit

Permalink
Use mysql:latest instead of skpr/mtk-mysql-empty:latest
Browse files Browse the repository at this point in the history
  • Loading branch information
mstrelan committed May 7, 2024
1 parent ce8c7c4 commit 6640ff1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ composer:
$(EXEC) composer install --ignore-platform-req=php

start: stop-php
PHP_VERSION=$(PHP_VERSION) $(DOCKER_COMPOSE) up --build -d
PHP_VERSION=$(PHP_VERSION) $(DOCKER_COMPOSE) up --build -d --wait

stop:
$(DOCKER_COMPOSE) stop
Expand Down
11 changes: 10 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,17 @@ services:
- ./:/data

mysql:
image: skpr/mtk-mysql-empty:latest
image: mysql:latest
network_mode: service:nginx
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: 1
MYSQL_USER: local
MYSQL_PASSWORD: local
MYSQL_DATABASE: local
healthcheck:
test: [ "CMD", "mysql", "-e", "USE local;" ]
interval: 1s
retries: 30

selenium:
image: ${SELENIUM_IMAGE:-selenium/standalone-chrome:111.0}
Expand Down

0 comments on commit 6640ff1

Please sign in to comment.