This commit is contained in:
root 2025-12-18 09:44:32 +08:00
parent 8232827835
commit e3a5bc2a6e
3 changed files with 14 additions and 35 deletions

8
.idea/.gitignore generated vendored Normal file
View File

@ -0,0 +1,8 @@
# 默认忽略的文件
/shelf/
/workspace.xml
# 基于编辑器的 HTTP 客户端请求
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

6
.idea/vcs.xml generated Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

View File

@ -1,35 +0,0 @@
version: '3.8'
services:
rustfs:
image: rustfs/rustfs:latest
container_name: rustfs
restart: unless-stopped
ports:
- "20060:9000"
- "20061:9001"
environment:
- TZ=${TZ:-Asia/Shanghai}
- RUSTFS_ACCESS_KEY=xiangning
- RUSTFS_SECRET_KEY=xn001624.
volumes:
- rustfs-data:/data
server:
build: .
container_name: file-system-server
restart: unless-stopped
ports:
- "8080:8080"
environment:
- TZ=Asia/Shanghai
- RUSTFS_ENDPOINT_URL=http://rustfs:9000
- RUSTFS_ACCESS_KEY_ID=xiangning
- RUSTFS_SECRET_ACCESS_KEY=xn001624.
- RUSTFS_REGION=us-east-1
- SERVER_PORT=8080
depends_on:
- rustfs
volumes:
rustfs-data: