-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
78 lines (70 loc) · 1.27 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
version: '3.9'
services:
web:
build: .
ports:
- '8000:8000'
command: python manage.py runserver 0.0.0.0:8000
volumes:
- .:/app
depends_on:
- postgres
- influxdb
- celery
- celery-beat
- redis
env_file:
- ./.env
frontend:
restart: always
command : npm start
container_name: front
build:
context: ./front/
dockerfile: Dockerfile
ports:
- "3000:3000"
volumes:
- ./front:/app/front
env_file:
- ./.env
redis:
image: "redis:alpine"
postgres:
image: postgres:14.4
ports:
- '5433:5432'
volumes:
- postgres_data:/var/lib/postgresql/data/
env_file:
- ./.env
influxdb:
image: influxdb:latest
restart: always
ports:
- '8086:8086'
volumes:
- influxdb-storage:/var/lib/influxdb2
env_file:
- ./.env
celery:
build: .
command: celery -A CryptoProject worker -l info
volumes:
- .:/usr/src/app/
depends_on:
- redis
env_file:
- ./.env
celery-beat:
build: .
command: celery -A CryptoProject beat -l info
volumes:
- .:/usr/src/app/
depends_on:
- redis
env_file:
- ./.env
volumes:
postgres_data:
influxdb-storage: