feat:图片服务

This commit is contained in:
2026-02-13 17:46:13 +08:00
commit e0c08e8055
6 changed files with 1462 additions and 0 deletions

12
docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
services:
image-service:
image: cxx/image-service:0.0.1
container_name: image-service
ports:
- "3000:3000"
volumes:
- /path/to/images:/app/images
environment:
- IMAGE_BASE_DIR=/app/images
- PORT=3000
restart: unless-stopped