aboutsummaryrefslogtreecommitdiff
path: root/docker/compose/local-replicate-compose.yml
blob: d88a541013eb90d15853c2b3a6fa9a88f4c22494 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
version: '3.9'

services:
  master:
    image: chrislusf/seaweedfs:local
    ports:
      - 9333:9333
      - 19333:19333
    command: "master -ip=master"
  volume:
    image: chrislusf/seaweedfs:local
    ports:
      - 8080:8080
      - 18080:18080
    command: "volume -mserver=master:9333 -port=8080 -ip=volume -preStopSeconds=1"
    depends_on:
      - master
  filer:
    image: chrislusf/seaweedfs:local
    ports:
      - 8888:8888
      - 18888:18888
    command: '-v=9 filer -master="master:9333"'
    restart: on-failure
    volumes:
      - ./notification.toml:/etc/seaweedfs/notification.toml
    depends_on:
      - master
      - volume
      - rabbitmq
      - replicate
    environment:
      RABBIT_SERVER_URL: "amqp://guest:guest@rabbitmq:5672/"
  replicate:
    image: chrislusf/seaweedfs:local
    command: '-v=9 filer.replicate'
    restart: on-failure
    volumes:
      - ./notification.toml:/etc/seaweedfs/notification.toml
      - ./replication.toml:/etc/seaweedfs/replication.toml
    depends_on:
      - rabbitmq
    environment:
      RABBIT_SERVER_URL: "amqp://guest:guest@rabbitmq:5672/"
  s3:
    image: chrislusf/seaweedfs:local
    ports:
      - 8333:8333
    command: 's3 -filer="filer:8888"'
    depends_on:
      - master
      - volume
      - filer
  rabbitmq:
    image: rabbitmq:3.8.10-management-alpine
    ports:
      - 5672:5672
      - 15671:15671
      - 15672:15672
    environment:
      RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS: "-rabbit log_levels [{connection,error},{queue,debug}]"