-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
47 lines (44 loc) · 1012 Bytes
/
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
45
46
47
version: "3.5"
volumes:
mysql:
minio:
services:
mysql:
image: centos/mysql-80-centos8:latest
container_name: mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: nukagit
MYSQL_USER: nukagit
MYSQL_PASSWORD: password
ports:
- 3306:3306
volumes:
- mysql:/var/lib/mysql/data:rw
minio:
image: quay.io/minio/minio:latest
container_name: minio
restart: always
environment:
MINIO_ROOT_USER: minio99
MINIO_ROOT_PASSWORD: minio123
ports:
- 9000:9000
- 9001:9001
volumes:
- minio:/data:rw
command: server /data --console-address ":9001"
mc:
image: minio/mc:latest
container_name: mc
restart: "no"
depends_on:
- minio
entrypoint: /bin/sh
command: -c "mc alias set minio http://minio:9000 minio99 minio123 && mc mb minio/nukagit"
jaeger:
image: jaegertracing/all-in-one:latest
ports:
- "16686:16686"
- "4317:4317"