-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
53 lines (49 loc) · 974 Bytes
/
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
services:
mainservice:
build:
context: .
dockerfile: Dockerfile
ports:
- "8080:8080"
depends_on:
redisserver:
condition: service_healthy
volumes:
- .:/app
# healthcheck:
# test: ["CMD", "curl", "-f", "http://localhost:8080/"]
# interval: 5s
# timeout: 3s
# retries: 3
networks:
- shared-net
redisserver:
build:
context: ./redis
dockerfile: Dockerfile
ports:
- "6379:6379"
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 5s
timeout: 3s
retries: 3
networks:
- shared-net
nginxserver:
build:
context: ./nginx
dockerfile: Dockerfile
ports:
- "80:80"
volumes:
- ./staticfiles:/etc/staticfiles
- ./media:/etc/media
depends_on:
mainservice:
condition: service_started
networks:
- shared-net
networks:
shared-net:
driver: bridge