init
This commit is contained in:
commit
b887f15662
21 changed files with 1038 additions and 0 deletions
12
compose.yml
Normal file
12
compose.yml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
services:
|
||||
db:
|
||||
image: mysql:8.0
|
||||
container_name: socket_server_db
|
||||
restart: always
|
||||
environment:
|
||||
MYSQL_ROOT_PASSWORD: root_password
|
||||
MYSQL_DATABASE: socket_server
|
||||
ports:
|
||||
- "33306:3306"
|
||||
volumes:
|
||||
- ./schema.sql:/docker-entrypoint-initdb.d/schema.sql
|
||||
Loading…
Add table
Add a link
Reference in a new issue