-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
87 lines (80 loc) · 1.78 KB
/
docker-compose.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
version: '3.5'
services:
postgres:
container_name: uidsm_db
image: postgres:14
environment:
POSTGRES_USER: 'postgres'
POSTGRES_PASSWORD: 'pass'
PGDATA: /data/postgres
volumes:
- postgres:/data/postgres
expose:
- 5432
networks:
uidsm_net:
aliases:
- uidsm_db
restart: always
uidsm_server:
container_name: uidsm_server
restart: always
image: rheagroup/ui-dsm:latest
networks:
uidsm_net:
aliases:
- uidsm_server
depends_on:
- postgres
ports:
- "8080:80"
volumes:
- artifacts:/app/storage
search:
container_name: uidsm_search
image: rheagroup/ui-dsm-search-service:latest
environment:
- Meilisearch__host=${MEILI_HOST:-http://uidsm_meilisearch:7700}
- Meilisearch__key=${MEILI_MASTER_KEY:-masterkey}
- MessageBroker__host=uidsm_rabbitmq
- MessageBroker__port=5672
volumes:
- 'searchlibrary:/app/Plugins'
networks:
- uidsm_net
expose:
- 80
restart: always
meilisearch:
container_name: uidsm_meilisearch
image: "getmeili/meilisearch:v0.30.4"
environment:
- MEILI_NO_ANALYTICS=false
- MEILI_MASTER_KEY=${MEILI_MASTER_KEY:-masterkey}
- MEILI_HTTP_PAYLOAD_SIZE_LIMIT=209715200
networks:
- uidsm_net
expose:
- 7700
volumes:
- 'meilisearch:/meili_data'
restart: always
rabbitmq:
container_name: uidsm_rabbitmq
image: "rabbitmq:3-management"
restart: always
networks:
- uidsm_net
expose:
- 5672
volumes:
- 'rabbitmq_data:/data'
networks:
uidsm_net:
driver: bridge
volumes:
postgres:
artifacts:
meilisearch:
searchlibrary:
rabbitmq_data: