Skip to content

Commit

Permalink
Fusinauth minio setup
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanWalker277 committed May 2, 2023
1 parent c59e528 commit 4028161
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
10 changes: 9 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,14 @@ services:
- POSTGRES_PASSWORD=${FUSIONAUTH_POSTGRES_PASSWORD}
volumes:
- ./pgdata-fa-db:/var/lib/postgresql/data

uci-minio:
image: quay.io/minio/minio
ports:
- "9000:9000"
- "9001:9001"
env_file: env.dev/minio.env
command: server /data --console-address ":9001"

vault:
image: vault:1.10.3
Expand All @@ -359,7 +367,7 @@ services:
cap_add:
- IPC_LOCK
command: vault server -config=/vault/config/vault.json

volumes:
db-data-formsdb:
db-data-messagedb:
Expand Down
8 changes: 8 additions & 0 deletions env.dev/minio.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
MINIO_ROOT_USER = minio99
MINIO_ROOT_PASSWORD = minio123
MINIO_IDENTITY_OPENID_CLIENT_ID= 054256c2-8d00-4502-8001-cc9937124b7d
MINIO_IDENTITY_OPENID_CLIENT_SECRET= xYSYocx5ufhfZGbc6r_iLhXYrB579FY_AimrH5aoNzI
MINIO_IDENTITY_OPENID_CONFIG_URL= http://fusionauth:9011/.well-known/openid-configuration/054256c2-8d00-4502-8001-cc9937124b7d
MINIO_IDENTITY_OPENID_CLAIM_NAME= roles
MINIO_IDENTITY_OPENID_SCOPES= openid
MINIO_IDENTITY_OPENID_REDIRECT_URI= http://minio:9001/oauth_callback

0 comments on commit 4028161

Please sign in to comment.