-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
79 lines (73 loc) · 2.01 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
services:
backend:
build:
context: ./backend # Fait référence au fichier nommé DockerFile par défaut du répertoire courant. Exécute les instructions à l'intérieur.
dockerfile: Dockerfile # Indication explicite que l'on cible le fichier nommé Dockerfile.
ports:
- 4000:4000
volumes:
- ./backend/src:/app/src
healthcheck:
test: 'curl --fail --request POST --header ''content-type: application/json'' --url ''http://localhost:4000'' --data ''{"query":"query { __typename }"}'' || exit 1'
interval: 5s
timeout: 5s
retries: 10
env_file: .env.apikey
depends_on:
db:
condition: service_healthy
frontend:
build:
context: ./frontend # Fait référence au fichier nommé DockerFile par défaut du répertoire courant. Exécute les instructions à l'intérieur.
dockerfile: Dockerfile # Indication explicite que l'on cible le fichier nommé Dockerfile.
restart: always
environment:
- NODE_ENV=development
- CHOKIDAR_USEPOLLING=true
- WATCHPACK_POLLING=true
env_file: .env.dev
ports:
- 3000:3000
volumes:
- ./frontend/src:/app/src
depends_on:
backend:
condition: service_healthy
db:
image: postgres
restart: always
ports:
- "5434:5432"
environment:
POSTGRES_PASSWORD: wildrent
healthcheck:
test: ["CMD-SHELL", "pg_isready -d postgres -U postgres"]
interval: 10s
timeout: 5s
retries: 20
volumes:
- pgdata_new1:/var/lib/postgresql/data
imagesupload:
build: ./imagesupload
# build:
# context: ./imagesupload
# dockerfile: Dockerfile
volumes:
- ./imagesupload/src:/app/src
- ./imagesupload/uploads:/app/uploads
ports:
- 8000:8000
adminer:
image: adminer
ports:
- 8080:8080
redis:
image: redis
redis-commander:
image: rediscommander/redis-commander
environment:
- REDIS_HOSTS=redis
ports:
- "8081:8081"
volumes:
pgdata_new1: