This commit is contained in:
bumpsoo 2026-02-03 09:44:08 +00:00
commit b887f15662
21 changed files with 1038 additions and 0 deletions

12
compose.yml Normal file
View 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