forked from cuducos/my-internet-speed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
57 lines (50 loc) · 828 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
54
55
56
57
version: "3"
services:
beat:
build:
context: .
env_file:
- .env
volumes:
- ".:/code"
depends_on:
- broker
flower:
build:
context: .
env_file:
- .env
volumes:
- ".:/code"
depends_on:
- broker
ports:
- 5555:5555
command: ["celery", "-A", "my_internet_speed", "flower"]
dashboard:
build:
context: dashboard/
depends_on:
- api
volumes:
- "./dashboard:/code"
ports:
- 3000:3000
api:
env_file:
- .env
image: postgrest/postgrest
ports:
- 3001:3000
db:
image: postgres:11.2
env_file:
- .env
volumes:
- ./db:/var/lib/postgresql
broker:
image: redis:5.0.4
chrome:
image: selenium/standalone-chrome
ports:
- 5900:5900