aboutsummaryrefslogtreecommitdiff
path: root/docker/compose/local-minio-gateway-compose.yml
diff options
context:
space:
mode:
authorChris Lu <chrislusf@users.noreply.github.com>2021-03-29 09:42:07 -0700
committerGitHub <noreply@github.com>2021-03-29 09:42:07 -0700
commit3cf84b5fae0634a018f00dec5e4b04a839fe4b0c (patch)
treeb5a3ec136bf123c5f1e32a0729ab29b44b702d34 /docker/compose/local-minio-gateway-compose.yml
parentb61e9f6a1a7bec60d783d04cb457e6d50647e67d (diff)
parent6b3cc94ac4e248a86c80ae0c93acd30ba414121d (diff)
downloadseaweedfs-3cf84b5fae0634a018f00dec5e4b04a839fe4b0c.tar.xz
seaweedfs-3cf84b5fae0634a018f00dec5e4b04a839fe4b0c.zip
Merge pull request #1947 from kmlebedev/minio-gateway-compose
minio gateway s3 docker compose file
Diffstat (limited to 'docker/compose/local-minio-gateway-compose.yml')
-rw-r--r--docker/compose/local-minio-gateway-compose.yml50
1 files changed, 50 insertions, 0 deletions
diff --git a/docker/compose/local-minio-gateway-compose.yml b/docker/compose/local-minio-gateway-compose.yml
new file mode 100644
index 000000000..fafee59c8
--- /dev/null
+++ b/docker/compose/local-minio-gateway-compose.yml
@@ -0,0 +1,50 @@
+version: '2'
+
+services:
+ master:
+ image: chrislusf/seaweedfs:local
+ ports:
+ - 9333:9333
+ - 19333:19333
+ command: "master -ip=master -volumeSizeLimitMB=1024"
+ volume:
+ image: chrislusf/seaweedfs:local
+ ports:
+ - 8080:8080
+ - 18080:18080
+ command: "volume -mserver=master:9333 -port=8080 -ip=volume -max=0 -preStopSeconds=1"
+ depends_on:
+ - master
+ s3:
+ image: chrislusf/seaweedfs:local
+ ports:
+ - 8888:8888
+ - 18888:18888
+ - 8333:8333
+ command: '-v 1 filer -master="master:9333" -s3 -s3.config=/etc/seaweedfs/s3.json -s3.port=8333'
+ volumes:
+ - ./s3.json:/etc/seaweedfs/s3.json
+ depends_on:
+ - master
+ - volume
+ minio-gateway-s3:
+ image: minio/minio
+ ports:
+ - 9000:9000
+ command: 'minio gateway s3 http://s3:8333'
+ restart: on-failure
+ environment:
+ MINIO_ACCESS_KEY: "some_access_key1"
+ MINIO_SECRET_KEY: "some_secret_key1"
+ depends_on:
+ - s3
+ minio-warp:
+ image: minio/warp
+ command: 'mixed --duration=5m --obj.size=3mb --autoterm'
+ restart: on-failure
+ environment:
+ WARP_HOST: "minio-gateway-s3:9000"
+ WARP_ACCESS_KEY: "some_access_key1"
+ WARP_SECRET_KEY: "some_secret_key1"
+ depends_on:
+ - minio-gateway-s3 \ No newline at end of file