-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
67 lines (63 loc) · 1.48 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
# docker-compose file for development
version: "3"
services:
mongodb:
image: mongo:4
restart: always
ports:
- 27017:27017
volumes:
- ./mongo:/data/db
environment:
- MONGO_INITDB_ROOT_USERNAME=root
- MONGO_INITDB_ROOT_PASSWORD=root
# Access this container with `docker-compose exec crawler /bin/bash`
crawler:
build: ./crawler
image: simple_search_engine__crawler
depends_on:
- mongodb
restart: always
volumes:
- ./crawler:/container
working_dir: /container
environment:
- MONGO_URL=mongodb://root:root@mongodb:27017
- INITIAL_URLS_FILE_PATH=/container/config/urls.txt
command: ["/bin/bash"]
stdin_open: true
tty: true
api:
build: ./api
image: simple_search_engine__api
depends_on:
- mongodb
restart: always
ports:
- 3456:3456
volumes:
- ./api:/container
working_dir: /container
command: ["yarn", "dev"]
environment:
- MONGO_URL=mongodb://root:root@mongodb:27017/admin
- PORT=3456
web:
build:
context: ./web
args:
- REACT_APP_API_URL=http://localhost:3456/api/v1.0.0/search
image: simple_search_engine__web
depends_on:
- mongodb
- api
restart: always
ports:
- 3000:3000
volumes:
- ./web:/container
working_dir: /container
command: ["yarn", "start"]
environment:
- REACT_APP_API_URL=http://localhost:3456/api/v1.0.0/search
- PORT=3000