release: opensource snapshot 2026-02-27 19:25:00

This commit is contained in:
saturn
2026-02-27 19:25:00 +08:00
commit 5de9622c8b
1055 changed files with 164772 additions and 0 deletions

32
docker-compose.test.yml Normal file
View File

@@ -0,0 +1,32 @@
services:
mysql:
image: mysql:8.0
container_name: waoowaoo-test-mysql
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: waoowaoo_test
MYSQL_ROOT_HOST: "%"
ports:
- "3307:3306"
command:
- "--default-authentication-plugin=mysql_native_password"
- "--sql_mode=STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION"
healthcheck:
test: ["CMD-SHELL", "mysqladmin ping -h 127.0.0.1 -uroot -proot"]
interval: 5s
timeout: 5s
retries: 30
start_period: 15s
redis:
image: redis:7-alpine
container_name: waoowaoo-test-redis
ports:
- "6380:6379"
command: ["redis-server", "--appendonly", "no"]
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 5s
timeout: 5s
retries: 30
start_period: 5s