forked from superagent-ai/superagent
-
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.
Merge branch 'homanp:main' into landing-page
- Loading branch information
Showing
94 changed files
with
15,242 additions
and
1,109 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
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,23 @@ | ||
version: "3" | ||
|
||
services: | ||
# Use minio to mock s3 | ||
minio: | ||
container_name: minio | ||
network_mode: ${NETWORK_MODE} | ||
image: "quay.io/minio/minio:latest" | ||
restart: unless-stopped | ||
ports: | ||
# S3 compatible API | ||
- "9000:9000" | ||
# Minio console (Web UI) | ||
- "9090:9090" | ||
environment: | ||
MINIO_ROOT_USER: ${MINIO_ROOT_USER} | ||
MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD} | ||
volumes: | ||
- "minio:/data/minio" | ||
command: minio server /data/minio --console-address ":9090" | ||
|
||
volumes: | ||
minio: |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,8 @@ DBNAME=superagent | |
# Login details for pgadmin, http://localhost:5050 / http://pgadmin:5050 | ||
[email protected] | ||
PGADMIN_DEFAULT_PASSWORD=password | ||
|
||
# Minio (Locally hostable S3 compatible API and UI) | ||
# Use root user and pass to login to Minio UI and auth with the Minio S3 API | ||
MINIO_ROOT_USER:root | ||
MINIO_ROOT_PASSWORD:password |
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
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
Oops, something went wrong.