-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
111 lines (104 loc) · 3.06 KB
/
docker-compose.yaml
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
103
104
105
106
107
108
109
110
111
version: "3.7"
services:
########################################################################
#### API SERVICE ####
########################################################################
notipy-api:
ports:
- 8000:8000
build:
context: .
dockerfile: Dockerfile.dev
command: >
/bin/sh -c "
poetry run uvicorn main:app --reload --host 0.0.0.0;
"
volumes:
- .:/app
- ./volumes:/volumes:ro
env_file:
- .env
networks:
- notipy
########################################################################
#### DATABASE SERVICE ####
########################################################################
mongodb:
image: mongo:4.4.0-rc7
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: password
ports:
- 27017:27017
volumes:
- ./volumes/mongodb/:/data/db/
networks:
- notipy
########################################################################
#### WORKER SERVICE ####
########################################################################
celery:
build:
context: .
dockerfile: Dockerfile.dev
env_file:
- .env
volumes:
- .:/app
command: poetry run celery -A worker.send_notification worker -l info
networks:
- notipy
########################################################################
#### MESSAGE QUEUE SERVICE ####
#######################################################################
rabbitmq:
image: "rabbitmq:3-management"
environment:
- RABBITMQ_DEFAULT_USER=rabbitmquser
- RABBITMQ_DEFAULT_PASS=rabbitmqpassword
- RABBITMQ_DEFAULT_VHOST=notipy
volumes:
- ./volumes/rabbitmq:/var/lib/rabbitmq
ports:
- "5672:5672"
- "15672:15672"
healthcheck:
test: ["CMD", "rabbitmqctl", "status"]
interval: 5s
timeout: 15s
retries: 5
networks:
- notipy
########################################################################
#### BUCKET SERVICE #######
#######################################################################
minio:
image: minio/minio:latest
ports:
- "9000:9000"
- "9001:9001"
environment:
MINIO_ROOT_USER: minio
MINIO_ROOT_PASSWORD: password
volumes:
- ./volumes/minio/data:/export
- ./volumes/minio/config:/root/.minio
command: server --console-address :9001 /export
networks:
- notipy
createbuckets:
image: minio/mc:latest
depends_on:
- minio
entrypoint: >
/bin/sh -c "
apk add --no-cache bash;
/usr/bin/mc config host add myminio http://minio:9000 minio password;
/usr/bin/mc mb myminio/attachments;
/usr/bin/mc anonymous set public myminio/attachments;
exit 0;
"
networks:
- notipy
networks:
notipy: