File size: 1,621 Bytes
fe5d4e8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
#/**
# * Licensed to the Apache Software Foundation (ASF) under one
# * or more contributor license agreements.  See the NOTICE file
# * distributed with this work for additional information
# * regarding copyright ownership.  The ASF licenses this file
# * to you under the Apache License, Version 2.0 (the
# * "License"); you may not use this file except in compliance
# * with the License.  You may obtain a copy of the License at
# *
# *     http://www.apache.org/licenses/LICENSE-2.0
# *
# * Unless required by applicable law or agreed to in writing, software
# * distributed under the License is distributed on an "AS IS" BASIS,
# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# * See the License for the specific language governing permissions and
# * limitations under the License.
# */

# data directories, set .e.g `./data` if you want to have
# Zookeeper (data and datalog) and BookKeeper (journal and ledgers) volumes mounted to your host
dataDir:

# advertised address that bookies used for advertising themselves.
# host network mode is useless on Mac, so in order to let clients
# on the host accessing bookies in the docker network, we can set
# the advertisedAddr to let bookies advertised in a host network.
advertisedAddr: 127.0.0.1

# supported networkMode: bridge | host
# host network mode is useless on Mac
networkMode: bridge

zookeeper:
  size: 3
  image: zookeeper:3.8.0
  adminPort: 8080
  clientPort: 2181
  peerPort: 2888
  leaderPort: 3888

bookkeeper:
  size: 3
  image: apache/bookkeeper:4.15.3
  bookiePort: 3181
  bookieGrpcPort: 4181
  bookieHttpPort: 8080