aboutsummaryrefslogtreecommitdiff
path: root/docker/compose/local-replicate-compose.yml
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-02-03 13:09:28 -0800
committerChris Lu <chris.lu@gmail.com>2021-02-03 13:09:34 -0800
commit430aca474ca89a4e69660f2f19b50dccabd860c0 (patch)
tree8a14e96e9c578b0158b8f20332d622b7bd218880 /docker/compose/local-replicate-compose.yml
parent91f26b3b9b67be02f544b483f14fbe27bebaf394 (diff)
downloadseaweedfs-430aca474ca89a4e69660f2f19b50dccabd860c0.tar.xz
seaweedfs-430aca474ca89a4e69660f2f19b50dccabd860c0.zip
relocating local docker compose files
Diffstat (limited to 'docker/compose/local-replicate-compose.yml')
-rw-r--r--docker/compose/local-replicate-compose.yml61
1 files changed, 61 insertions, 0 deletions
diff --git a/docker/compose/local-replicate-compose.yml b/docker/compose/local-replicate-compose.yml
new file mode 100644
index 000000000..8240d45a7
--- /dev/null
+++ b/docker/compose/local-replicate-compose.yml
@@ -0,0 +1,61 @@
+version: '2'
+
+services:
+ master:
+ image: chrislusf/seaweedfs:local
+ ports:
+ - 9333:9333
+ - 19333:19333
+ command: "master -ip=master"
+ volume:
+ image: chrislusf/seaweedfs:local
+ ports:
+ - 8080:8080
+ - 18080:18080
+ command: "volume -mserver=master:9333 -port=8080 -ip=volume -preStopSeconds=1"
+ depends_on:
+ - master
+ filer:
+ image: chrislusf/seaweedfs:local
+ ports:
+ - 8888:8888
+ - 18888:18888
+ command: '-v=9 filer -master="master:9333"'
+ restart: on-failure
+ volumes:
+ - ./notification.toml:/etc/seaweedfs/notification.toml
+ depends_on:
+ - master
+ - volume
+ - rabbitmq
+ - replicate
+ environment:
+ RABBIT_SERVER_URL: "amqp://guest:guest@rabbitmq:5672/"
+ replicate:
+ image: chrislusf/seaweedfs:local
+ command: '-v=9 filer.replicate'
+ restart: on-failure
+ volumes:
+ - ./notification.toml:/etc/seaweedfs/notification.toml
+ - ./replication.toml:/etc/seaweedfs/replication.toml
+ depends_on:
+ - rabbitmq
+ environment:
+ RABBIT_SERVER_URL: "amqp://guest:guest@rabbitmq:5672/"
+ s3:
+ image: chrislusf/seaweedfs:local
+ ports:
+ - 8333:8333
+ command: 's3 -filer="filer:8888"'
+ depends_on:
+ - master
+ - volume
+ - filer
+ rabbitmq:
+ image: rabbitmq:3.8.10-management-alpine
+ ports:
+ - 5672:5672
+ - 15671:15671
+ - 15672:15672
+ environment:
+ RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS: "-rabbit log_levels [{connection,error},{queue,debug}]" \ No newline at end of file