-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-dev.yaml
More file actions
71 lines (70 loc) · 1.49 KB
/
docker-compose-dev.yaml
File metadata and controls
71 lines (70 loc) · 1.49 KB
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
version: "3.9"
services:
frontend:
image: ghcr.io/esir2-projet-keolis/frontend:master
depends_on:
- backend
ports:
- "80:80"
backend:
image: ghcr.io/esir2-projet-keolis/backend:main
depends_on:
- rabbitmq
environment:
AMQP_URL: amqp://guest:guest@rabbitmq:5672
REDIS_HOST: cache
API_PROCESSUNIT: http://processingunit:8090
ports:
- "4000:4000"
- "3500:3500"
collector:
image: ghcr.io/esir2-projet-keolis/collector:main
depends_on:
- rabbitmq
environment:
- PROD=True
rabbitmq:
image: rabbitmq:3.11.3-management-alpine
ports:
- "5672:5672"
- "15672:15672"
processingunit:
image: ghcr.io/esir2-projet-keolis/processing-storage-unit:master
depends_on:
- rabbitmq
- db
ports:
- "8090:8090"
environment:
DB_HOST: db
DB_PORT: 3306
API_IA_HOST: API_IA
API_IA_PORT: 5001
db:
image: ghcr.io/esir2-projet-keolis/mysql-db:main
ports:
- "6033:3306"
phpmyadmin:
image: phpmyadmin/phpmyadmin
links:
- db
environment:
PMA_HOST: db
PMA_PORT: 3306
PMA_ARBITRARY: 1
restart: always
ports:
- "8081:8081"
cache:
image: redis:alpine3.17
restart: always
ports:
- '6379:6379'
API_IA:
image: ghcr.io/esir2-projet-keolis/ia_api:main
ports:
- "5001:5001"
# REPLACE image : xxxxx
# BY build:
# context: path/to/repo
# dockerfile: path/to/repo/dockerfile