This commit is contained in:
2026-06-30 10:33:56 +08:00
commit 6e047dc0a5
607 changed files with 65966 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
services:
mysql:
image: mysql:8.0
container_name: dukang-mysql
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: dukang_haoke
ports:
- '3306:3306'
volumes:
- mysql_data:/var/lib/mysql
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
redis:
image: redis:7-alpine
container_name: dukang-redis
restart: unless-stopped
ports:
- '6379:6379'
volumes:
- redis_data:/data
volumes:
mysql_data:
redis_data: