add docker mysql

This commit is contained in:
aslan 2024-05-22 16:36:27 +03:00
parent 4240b57018
commit dada864314
2 changed files with 21 additions and 1 deletions

2
.gitignore vendored
View File

@ -22,5 +22,5 @@ yarn-error.log
/.phpstorm.meta.php /.phpstorm.meta.php
/_ide_helper.php /_ide_helper.php
/_ide_helper_models.php /_ide_helper_models.php
/public/img/icons/play-button.png
/tabit.sql /tabit.sql
/docker

20
docker-compose.yaml Normal file
View File

@ -0,0 +1,20 @@
version: '3'
services:
# MySQL
db:
container_name: mysql8
image: mysql:8.0
command: mysqld --default-authentication-plugin=mysql_native_password --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: sandbox
# MYSQL_USER: sandbox_user
# MYSQL_PASSWORD: passpass
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
ports:
- '3306:3306'
volumes:
- './docker/db/data:/var/lib/mysql'
- './docker/db/my.cnf:/etc/mysql/conf.d/my.cnf'
- './docker/db/sql:/docker-entrypoint-initdb.d'