aboutsummaryrefslogtreecommitdiff
path: root/docker/local-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docker/local-compose.yml')
-rw-r--r--docker/local-compose.yml54
1 files changed, 0 insertions, 54 deletions
diff --git a/docker/local-compose.yml b/docker/local-compose.yml
deleted file mode 100644
index 2c3679885..000000000
--- a/docker/local-compose.yml
+++ /dev/null
@@ -1,54 +0,0 @@
-version: '2'
-
-services:
- master:
- #image: chrislusf/seaweedfs # use a remote image
- build: . # build our container from the local Dockerfile
- ports:
- - 9333:9333
- command: "master"
- networks:
- default:
- aliases:
- - seaweed_master
- volume:
- #image: chrislusf/seaweedfs # use a remote image
- build: . # build our container from the local Dockerfile
- ports:
- - 8080:8080
- - 18080:18080
- command: 'volume -max=5 -mserver="master:9333" -port=8080'
- depends_on:
- - master
- networks:
- default:
- aliases:
- - seaweed_volume
- filer:
- #image: chrislusf/seaweedfs # use a remote image
- build: . # build our container from the local Dockerfile
- ports:
- - 8888:8888
- - 18888:18888
- command: 'filer -master="master:9333"'
- depends_on:
- - master
- - volume
- networks:
- default:
- aliases:
- - seaweed_filer
- s3:
- #image: chrislusf/seaweedfs # use a remote image
- build: . # build our container from the local Dockerfile
- ports:
- - 8333:8333
- command: 's3 -filer="filer:8888"'
- depends_on:
- - master
- - volume
- - filer
- networks:
- default:
- aliases:
- - seaweed_s3