-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
127c883
commit 1a6b51e
Showing
7 changed files
with
44 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# 开发环境搭建 | ||
|
||
JDK 版本:21 | ||
|
||
|
||
将下列配置添加到 hosts 中,Windows 中 hosts 在 `C:\Windows\System32\drivers\etc` 目录下,Mac 中 hosts 在 `/etc` 目录下 | ||
```shell | ||
# Passiflora Cloud | ||
127.0.0.1 passiflora-postgres | ||
127.0.0.1 passiflora-redis | ||
127.0.0.1 passiflora-minio | ||
127.0.0.1 passiflora-nacos | ||
``` | ||
|
||
|
||
### minio 启动 | ||
```shell | ||
docker run -d --name passiflora-minio \ | ||
--restart=always \ | ||
--publish 9000:9000 \ | ||
--publish 9001:9001 \ | ||
--env MINIO_ROOT_USER="minio" \ | ||
--env MINIO_ROOT_PASSWORD="password" \ | ||
-v /etc/localtime:/etc/localtime:ro \ | ||
bitnami/minio:2024.6.13 | ||
``` |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters