forked from lilarin/Library-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
57 lines (52 loc) · 981 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
services:
library_service:
build:
context: .
env_file:
- .env
ports:
- "8000:8000"
volumes:
- ./:/app
command: >
sh -c "python manage.py migrate &&
python manage.py runserver 0.0.0.0:8000"
depends_on:
- postgres
- redis
- celery
- celery-beat
postgres:
image: postgres:16.0-alpine3.17
restart: always
env_file:
- .env
ports:
- "5432:5432"
volumes:
- library_db_volume:$PGDATA
redis:
image: redis:7.4.0-alpine3.20
restart: always
celery:
build:
context: .
env_file:
- .env
volumes:
- ./:/app
command: celery -A library_service worker --loglevel=info
depends_on:
- redis
celery-beat:
build:
context: .
env_file:
- .env
volumes:
- ./:/app
command: celery -A library_service beat --loglevel=info
depends_on:
- redis
volumes:
library_db_volume: