Build database image with bundled bootstrap dumps

This commit is contained in:
Power BI Dev
2026-05-02 14:24:25 +07:00
parent 5f2fe70f04
commit 89ce9d30a7
4 changed files with 15 additions and 7 deletions

View File

@@ -25,7 +25,9 @@ services:
condition: service_healthy
db:
image: mysql:8.0
build:
context: .
dockerfile: docker/mysql/Dockerfile
restart: unless-stopped
command: --default-authentication-plugin=mysql_native_password --character-set-server=latin1 --collation-server=latin1_swedish_ci --sql-mode=NO_ENGINE_SUBSTITUTION
environment:
@@ -35,8 +37,6 @@ services:
MYSQL_DATABASE: ${DB_NAME:-spota_spotadb}
volumes:
- spota_db_data:/var/lib/mysql
- ./docker/mysql-init:/docker-entrypoint-initdb.d:ro
- ./spota_db:/spota_db:ro
healthcheck:
test: ["CMD-SHELL", "mysqladmin ping -h localhost -uroot -p$${MYSQL_ROOT_PASSWORD}"]
interval: 10s