You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
503 B
19 lines
503 B
# PROJECT: dolphin |
|
# VERSION: 1.0.0 |
|
# Author: wangxiang4 |
|
# https://hub.docker.com/_/zookeeper |
|
version: "3" |
|
services: |
|
zookeeper: |
|
image: zookeeper:3.4.14 |
|
container_name: zookeeper |
|
hostname: zookeeper |
|
restart: always |
|
environment: |
|
- ZOO_MAX_CLIENT_CNXNS=200 |
|
volumes: |
|
- /usr/software/dockerDatabase/zookeeper/data:/data |
|
- /usr/software/dockerDatabase/zookeeper/config:/conf |
|
- /usr/software/dockerDatabase/zookeeper/logs:/datalog |
|
ports: |
|
- 2181:2181
|
|
|