commit 8fe148d594b8d3f59f04d043527b4e4f0a445d33 Author: wandoubaba Date: Fri May 16 16:20:03 2025 +0800 init diff --git a/data/.gitignore b/data/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/data/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..242407a --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,13 @@ + +services: + mysql: + image: quay.io/wandoubaba517/mysql:9 + container_name: mysql + restart: always + environment: + MYSQL_ROOT_PASSWORD: 123456 + volumes: + - ./data:/var/lib/mysql + ports: + - 3306:3306 +