aboutsummaryrefslogtreecommitdiff
path: root/docker/seaweedfs-compose.yml
blob: 05ed0e69ed26b4f6de503a1f6c63ffdf42781522 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
version: '2'

services:
  master:
    image: chrislusf/seaweedfs # use a remote image
    ports:
    - 9333:9333
    - 19333:19333
    command: "master"
  volume:
    image: chrislusf/seaweedfs # use a remote image
    ports:
    - 8080:8080
    - 18080:18080
    command: 'volume -max=15 -mserver="master:9333" -port=8080'
    depends_on:
    - master
  filer:
    image: chrislusf/seaweedfs # use a remote image
    ports:
    - 8888:8888
    - 18888:18888
    command: 'filer -master="master:9333"'
    tty: true
    stdin_open: true
    depends_on:
    - master
    - volume
  s3:
    image: chrislusf/seaweedfs # use a remote image
    ports:
    - 8333:8333
    command: 's3 -filer="filer:8888"'
    depends_on:
    - master
    - volume
    - filer