update Config.toml

This commit is contained in:
lychang
2025-06-24 02:36:48 +08:00
parent 9f2de74377
commit 93e084f03b
3 changed files with 2567 additions and 1 deletions

4
.env Normal file
View File

@@ -0,0 +1,4 @@
MINIO_REGION=
MINIO_ENDPOINT=http://192.168.1.100:9000
MINIO_ACCESS_KEY=8hp6291qwQdfL1PKVHea
MINIO_SECRET_KEY=4fRjSnkoph2azfHnJVCETjAej6UXpCfd4JKnlNe3

2562
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -6,7 +6,7 @@ RUN USER=root cargo new storage
WORKDIR /app/storage
RUN mkdir -p .cargo
COPY config.toml .cargo/
COPY Cargo.toml ./
COPY Cargo.toml Cargo.lock ./
COPY ./src src
RUN cargo install --path . --color always