mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
39 lines
907 B
YAML
39 lines
907 B
YAML
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
|
|
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
|
|
command: 'filer -master="master:9333"'
|
|
depends_on:
|
|
- master
|
|
- volume
|
|
networks:
|
|
default:
|
|
aliases:
|
|
- seaweed_filer
|