forked from plan4better/goat-routing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (45 loc) · 778 Bytes
/
docker-compose.yml
File metadata and controls
50 lines (45 loc) · 778 Bytes
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
version: "3.9"
networks:
proxy:
name: goat
services:
api:
build:
context: .
dockerfile: Dockerfile
args:
INSTALL_DEV: ${INSTALL_DEV-true}
container_name: goat_routing
hostname: goat_routing
env_file:
- .env
volumes:
- .:/app
ports:
- "6000:6000"
- "8000:8000"
networks:
proxy:
rabbitmq:
image: rabbitmq:management
ports:
- 5672:5672
- 15672:15672
networks:
proxy:
redis:
image: redis:latest
networks:
proxy:
celery-worker:
build: .
command: celery -A src.core.worker worker --loglevel=info
env_file:
- .env
volumes:
- .:/app
depends_on:
- rabbitmq
- redis
networks:
proxy: