forked from DEENUU1/property-aggregator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.dev.yml
71 lines (66 loc) · 1.75 KB
/
docker-compose.dev.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
version: "3"
services:
web:
hostname: web
build:
context: .
dockerfile: Dockerfile_app
image: ${IMAGE_PREFIX}_web:${IMAGE_VERSION}
container_name: ${IMAGE_PREFIX}_web
command: uvicorn main:app --host 0.0.0.0 --port 8000
volumes:
- ./app:/app
ports:
- "${PORT_WEB}:8000"
env_file:
- .env
restart: always
depends_on:
- db
redis:
image: redis:latest
container_name: "${IMAGE_PREFIX}_redis"
ports:
- "${PORT_REDIS}:6379"
celery_worker:
container_name: ${IMAGE_PREFIX}_celery_worker
build:
context: .
dockerfile: Dockerfile_app
image: ${IMAGE_PREFIX}_worker:${IMAGE_VERSION}
command: celery -A tasks.celery_worker worker --pool=solo --loglevel=info
volumes:
- ./app:/app
depends_on:
- redis
- web
restart: always
env_file:
- .env
flower:
container_name: ${IMAGE_PREFIX}_flower
build:
context: .
dockerfile: Dockerfile_app
image: ${IMAGE_PREFIX}_flower:${IMAGE_VERSION}
command: celery -A tasks.celery_worker flower
volumes:
- ./app:/app
ports:
- "${PORT_FLOWER}:5555"
env_file:
- .env
depends_on:
- redis
- web
- celery_worker
db:
hostname: db
image: postgres:15
container_name: ${IMAGE_PREFIX}_database
volumes:
- ./data/db:/var/lib/postgresql/data
ports:
- "${PORT_POSTGRES}:5432"
env_file:
- .env