-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
44 lines (43 loc) · 1.15 KB
/
docker-compose.yaml
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
version: '3'
services:
mm:
image: registry.hamdocker.ir/public/mysql-manager:main
environment:
ETCD_HOST: etcd
ETCD_USERNAME: mm
ETCD_PASSWORD: password
ETCD_PREFIX: mm/cluster1/
volumes:
- './tests/configs/mm-config-mysql-2.yaml:/etc/mm/cluster-spec.yaml'
mm-haproxy:
build:
context: .
image: mm-haproxy
environment:
ETCD_HOST: http://etcd:2379
ETCD_USERNAME: mm
ETCD_PASSWORD: password
ETCD_PREFIX: mm/cluster1/
ports:
- 6070:6070
- 3306:3306
- 3307:3307
restart: always
etcd:
image: quay.hamdocker.ir/coreos/etcd:v3.5.9-amd64
command:
- etcd
- --data-dir=/var/lib/etcd
- --name=mm-etcd
- --advertise-client-urls=http://etcd:2379
- --initial-cluster-token=etcd-cluster
- --initial-cluster-state=new
- --listen-client-urls=http://0.0.0.0:2379
- --listen-metrics-urls=http://0.0.0.0:2381
- --listen-peer-urls=http://0.0.0.0:2380
- --auto-compaction-mode=revision
- --auto-compaction-retention=5
ports:
- 2300:2379
volumes:
- ./etcd-data:/var/lib/etcd