From e3a5bc2a6e521a0a8663ecceb59f65b6acf5bde7 Mon Sep 17 00:00:00 2001 From: root <1772105645@qq.com> Date: Thu, 18 Dec 2025 09:44:32 +0800 Subject: [PATCH] init --- .idea/.gitignore | 8 ++++++++ .idea/vcs.xml | 6 ++++++ docker-compose.yml | 35 ----------------------------------- 3 files changed, 14 insertions(+), 35 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/vcs.xml delete mode 100644 docker-compose.yml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..35410ca --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 62f57ed..0000000 --- a/docker-compose.yml +++ /dev/null @@ -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: