-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-complete.yml
54 lines (48 loc) · 1.1 KB
/
docker-compose-complete.yml
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
# full software stack
version: '3'
services:
db:
image: mongo:6
restart: unless-stopped
app:
build:
context: .
restart: unless-stopped
environment:
MONGO_HOST: db
MINIO_PRIVATE_URL: http://minio:9000
MINIO_PUBLIC_URL: http://localhost/files
JAEGER_HOST: jaeger
depends_on:
- db
- minio
jaeger:
image: jaegertracing/all-in-one:1.38
environment:
COLLECTOR_ZIPKIN_HOST_PORT: 9411
QUERY_BASE_PATH: /jaeger
web:
image: nginx
ports:
- 80:80
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf
depends_on:
- app
- jaeger
mongo-express:
image: mongo-express
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_SERVER: db
depends_on:
- db
minio:
image: "bitnami/minio:2024.6.4"
environment:
# references: https://github.com/bitnami/containers/blob/main/bitnami/minio/README.md
MINIO_ROOT_USER: AKIAIOSFODNN7EXAMPLE
MINIO_ROOT_PASSWORD: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
#volumes:
#- "./tmp/minio:/bitnami/minio/data"