-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
102 lines (93 loc) · 2.37 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
version: "3.7"
services:
##########################################################################
###### BACKGROUND TASKS #######
##########################################################################
redis:
image: redis:alpine
ports:
- 6379:6379
volumes:
- ./volumes/redis:/data
command: >
/bin/sh -c "
redis-server --appendonly yes --requirepass password
"
networks:
- hunting
celery:
build:
context: .
dockerfile: Dockerfile
env_file:
- .env
command: >
/bin/sh -c "
celery -A app.worker worker -l info --max-memory-per-child=3000000 --max-tasks-per-child=2;
"
volumes:
- .:/app
depends_on:
- redis
networks:
- hunting
extra_hosts:
- "host.docker.internal:host-gateway"
flower:
build:
context: .
dockerfile: Dockerfile
command: >
/bin/sh -c "
celery -A app.worker flower --port=5555
"
ports:
- 5555:5555
environment:
- CELERY_BROKER_URL=redis://:password@redis:6379/0
- CELERY_RESULT_BACKEND=redis://:password@redis:6379/0
- FLOWER_UNAUTHENTICATED_API=true
depends_on:
- redis
- celery
networks:
- hunting
##########################################################################
###### DATABASES #######
##########################################################################
mongodb:
image: mongo:6.0.3
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
volumes:
- ./volumes/mongodb:/data/db
ports:
- 27017:27017
networks:
- hunting
##########################################################################
###### HUNTING SERVER #######
##########################################################################
hunting-server:
ports:
- 8000:8000
build:
context: .
dockerfile: Dockerfile
command: >
/bin/sh -c "
uvicorn app.main:app --reload --host 0.0.0.0;
"
env_file:
- .env
depends_on:
- redis
volumes:
- .:/app
networks:
- hunting
extra_hosts:
- "host.docker.internal:host-gateway"
networks:
hunting: