更新 .gitignore 重新包含开发时相关文件

This commit is contained in:
2025-04-30 16:55:48 +08:00
parent 1976baa164
commit fde5e7226e
4 changed files with 889 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
name: platform-dev
services:
postgres:
image: postgres:17
restart: always
environment:
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_DB: ${DB_NAME}
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
redis:
image: redis:7.4
restart: always
ports:
- "6379:6379"
volumes:
postgres_data: