2016-09-23 16:49:38 +00:00
|
|
|
version: '2'
|
|
|
|
|
|
|
|
services:
|
|
|
|
master:
|
2018-12-27 22:01:47 +00:00
|
|
|
image: chrislusf/seaweedfs # use a remote image
|
2016-09-23 16:49:38 +00:00
|
|
|
ports:
|
2020-02-27 00:46:29 +00:00
|
|
|
- 9333:9333
|
|
|
|
- 19333:19333
|
2022-05-07 05:58:46 +00:00
|
|
|
command: "master -ip=master -ip.bind=0.0.0.0"
|
2016-09-23 16:49:38 +00:00
|
|
|
volume:
|
2018-12-27 22:01:47 +00:00
|
|
|
image: chrislusf/seaweedfs # use a remote image
|
2016-09-23 16:49:38 +00:00
|
|
|
ports:
|
2020-02-27 00:46:29 +00:00
|
|
|
- 8080:8080
|
|
|
|
- 18080:18080
|
2021-01-17 13:33:14 +00:00
|
|
|
- 9325:9325
|
2022-05-07 05:58:46 +00:00
|
|
|
command: 'volume -mserver="master:9333" -ip.bind=0.0.0.0 -port=8080 -metricsPort=9325'
|
2018-10-11 08:16:33 +00:00
|
|
|
depends_on:
|
2020-02-27 00:46:29 +00:00
|
|
|
- master
|
2018-09-11 19:36:59 +00:00
|
|
|
filer:
|
2018-12-27 22:01:47 +00:00
|
|
|
image: chrislusf/seaweedfs # use a remote image
|
2018-10-11 08:16:33 +00:00
|
|
|
ports:
|
2020-02-27 00:46:29 +00:00
|
|
|
- 8888:8888
|
|
|
|
- 18888:18888
|
2021-01-17 13:33:14 +00:00
|
|
|
- 9326:9326
|
2022-05-07 05:58:46 +00:00
|
|
|
command: 'filer -master="master:9333" -ip.bind=0.0.0.0 -metricsPort=9326'
|
2018-12-27 23:13:58 +00:00
|
|
|
tty: true
|
|
|
|
stdin_open: true
|
2018-09-11 19:36:59 +00:00
|
|
|
depends_on:
|
2020-02-27 00:46:29 +00:00
|
|
|
- master
|
|
|
|
- volume
|
2018-12-16 23:58:59 +00:00
|
|
|
s3:
|
2018-12-27 22:01:47 +00:00
|
|
|
image: chrislusf/seaweedfs # use a remote image
|
2018-12-16 23:58:59 +00:00
|
|
|
ports:
|
2020-02-27 00:46:29 +00:00
|
|
|
- 8333:8333
|
2021-01-17 13:33:14 +00:00
|
|
|
- 9327:9327
|
2022-05-07 05:58:46 +00:00
|
|
|
command: 's3 -filer="filer:8888" -ip.bind=0.0.0.0 -metricsPort=9327'
|
2018-12-16 23:58:59 +00:00
|
|
|
depends_on:
|
2020-02-27 00:46:29 +00:00
|
|
|
- master
|
|
|
|
- volume
|
|
|
|
- filer
|
2021-02-01 06:57:30 +00:00
|
|
|
webdav:
|
|
|
|
image: chrislusf/seaweedfs # use a remote image
|
|
|
|
ports:
|
|
|
|
- 7333:7333
|
|
|
|
command: 'webdav -filer="filer:8888"'
|
|
|
|
depends_on:
|
|
|
|
- master
|
|
|
|
- volume
|
|
|
|
- filer
|
2021-01-17 13:33:14 +00:00
|
|
|
prometheus:
|
|
|
|
image: prom/prometheus:v2.21.0
|
|
|
|
ports:
|
|
|
|
- 9000:9090
|
|
|
|
volumes:
|
|
|
|
- ./prometheus:/etc/prometheus
|
|
|
|
command: --web.enable-lifecycle --config.file=/etc/prometheus/prometheus.yml
|
|
|
|
depends_on:
|
|
|
|
- s3
|