更改本地dev常见端口

This commit is contained in:
yml2213
2026-07-25 16:31:42 +08:00
parent dabf147019
commit 3461c02560
7 changed files with 66 additions and 33 deletions
+4 -4
View File
@@ -10,7 +10,7 @@ services:
MYSQL_PASSWORD: secret
TZ: Asia/Shanghai
ports:
- "3306:3306"
- "${DEV_MYSQL_PORT:-13306}:3306"
volumes:
- mysql_data:/var/lib/mysql
healthcheck:
@@ -24,7 +24,7 @@ services:
container_name: hfb-redis
restart: unless-stopped
ports:
- "6379:6379"
- "${DEV_REDIS_PORT:-16379}:6379"
volumes:
- redis_data:/data
healthcheck:
@@ -43,8 +43,8 @@ services:
MINIO_ROOT_PASSWORD: minioadmin
TZ: Asia/Shanghai
ports:
- "9000:9000"
- "9001:9001"
- "${DEV_MINIO_API_PORT:-19090}:9000"
- "${DEV_MINIO_CONSOLE_PORT:-19091}:9001"
volumes:
- minio_data:/data
healthcheck: