Skip to content

Commit

Permalink
docker-compose, update minio release
Browse files Browse the repository at this point in the history
* The web console has been moved to a separate port
* Newer minio returns slightly differently formatted JSON,
  adapt tests to use a more complicated deep equals where
  needed.
  • Loading branch information
BuJo committed Feb 11, 2022
1 parent 6274d6f commit e671bd5
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 71 deletions.
5 changes: 3 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
version: "3"
services:
minio:
image: minio/minio:RELEASE.2021-04-06T23-11-00Z
image: minio/minio:RELEASE.2022-02-07T08-17-33Z
ports:
- "9000:9000"
- "9001:9001"
environment:
MINIO_ACCESS_KEY: minio
MINIO_SECRET_KEY: minio123
command: server /data{0...3}
command: server --console-address :9001 /data{0...3}
adminio-ui:
image: rzrbld/adminio-ui:v1.93
environment:
Expand Down
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ go 1.16

require (
github.com/aws/aws-sdk-go v1.42.51
github.com/google/go-cmp v0.5.7
github.com/hashicorp/terraform-plugin-sdk/v2 v2.10.1
github.com/jen20/awspolicyequivalence v1.1.0
github.com/minio/madmin-go v1.3.1
Expand Down
Loading

0 comments on commit e671bd5

Please sign in to comment.