Compare commits
2 Commits
4240b57018
...
39b050ba83
Author | SHA1 | Date |
---|---|---|
aslan | 39b050ba83 | |
aslan | dada864314 |
|
@ -22,5 +22,8 @@ yarn-error.log
|
|||
/.phpstorm.meta.php
|
||||
/_ide_helper.php
|
||||
/_ide_helper_models.php
|
||||
/public/img/icons/play-button.png
|
||||
/tabit.sql
|
||||
/docker
|
||||
/docker/db
|
||||
/docker/db/data
|
||||
|
||||
|
|
|
@ -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'
|
Loading…
Reference in New Issue