seaweedfs/docker/docker-compose.yml

55 lines
1.2 KiB
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
2018-12-16 23:58:59 +00:00
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