add filer to docker-compose and entrypoint, build from local Dockerfile

This commit is contained in:
jenkins.ow
2018-09-11 12:36:59 -07:00
parent 43ff60cb23
commit bc025d5305
3 changed files with 25 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ version: '2'
services:
master:
image: chrislusf/seaweedfs
build: .
ports:
- 9333:9333
command: "master"
@@ -11,7 +11,7 @@ services:
aliases:
- seaweed_master
volume:
image: chrislusf/seaweedfs
build: .
ports:
- 8080:8080
command: 'volume -max=5 -mserver="master:9333" -port=8080'
@@ -20,4 +20,16 @@ services:
networks:
default:
aliases:
- seaweed_volume
- seaweed_volume
filer:
build: .
ports:
- 8888:8888
command: 'filer -master="master:9333"'
depends_on:
- master
- volume
networks:
default:
aliases:
- seaweed_filer