seaweedfs/docker/docker-compose.yml

41 lines
923 B
YAML
Raw Normal View History

2016-09-23 16:49:38 +00:00
version: '2'
services:
master:
#image: chrislusf/seaweedfs # use a remote image
build: . # build our container from the local Dockerfile
2016-09-23 16:49:38 +00:00
ports:
2018-10-11 08:16:33 +00:00
- 9333:9333
2016-09-23 16:49:38 +00:00
command: "master"
networks:
default:
aliases:
2018-10-11 08:16:33 +00:00
- seaweed_master
2016-09-23 16:49:38 +00:00
volume:
#image: chrislusf/seaweedfs # use a remote image
build: . # build our container from the local Dockerfile
2016-09-23 16:49:38 +00:00
ports:
2018-10-11 08:16:33 +00:00
- 8080:8080
- 18080:18080
2016-09-23 16:49:38 +00:00
command: 'volume -max=5 -mserver="master:9333" -port=8080'
2018-10-11 08:16:33 +00:00
depends_on:
- master
2016-09-23 16:49:38 +00:00
networks:
default:
aliases:
2018-10-11 08:16:33 +00:00
- seaweed_volume
filer:
#image: chrislusf/seaweedfs # use a remote image
build: . # build our container from the local Dockerfile
2018-10-11 08:16:33 +00:00
ports:
- 8888:8888
- 18888:18888
command: 'filer -master="master:9333"'
depends_on:
2018-10-11 08:16:33 +00:00
- master
- volume
networks:
default:
aliases:
2018-10-11 08:16:33 +00:00
- seaweed_filer