-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yaml
63 lines (57 loc) · 1.61 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
version: "3"
services:
scraper:
build: ./scraper
volumes:
- "./scraper/src:/usr/local/app/src:rw"
- "./archive:/usr/local/app/archive:rw"
entrypoint: python3 -u -m src.server
ports:
- 5005:5000
citator:
build: ./citator
volumes:
- "./citator/src:/usr/local/app/src:rw"
- "./citator/resources:/usr/local/app/resources:rw"
- "./citator-data:/usr/local/app/data:rw"
- "./archive:/usr/local/app/resources/public/archive:rw"
# entrypoint: clj -M:nREPL -m nrepl.cmdline -p 47482 -b 0.0.0.0
entrypoint: clj -M -m server
ports:
- 3005:3000
- 47482:47482
citator-ui:
build: ./citator-ui
volumes:
- "./citator-ui/src:/usr/local/app/src:rw"
entrypoint: npx shadow-cljs watch app
ports:
- 8021:8021
- 9630:9630
doi-registrar:
build: ./doi-registrar
volumes:
- "./doi-registrar/src:/usr/local/app/src:rw"
- "./doi-registrar/resources:/usr/local/app/resources:rw"
- "./doi-registrar-data:/usr/local/app/data:rw"
# entrypoint: clj -M:nREPL -m nrepl.cmdline -p 47483 -b 0.0.0.0
entrypoint: clj -M -m server
ports:
- 3006:3000
- 47483:47483
doi-registrar-ui:
build: ./doi-registrar-ui
volumes:
- "./doi-registrar-ui/src:/usr/local/app/src:rw"
entrypoint: npx shadow-cljs watch app
ports:
- 8020:8020
- 9631:9631
widget-host:
build: ./widget-host
entrypoint: clj -M -m server
volumes:
- "./widget-host/src:/usr/local/app/src:rw"
- "./widget-host/resources:/usr/local/app/resources:rw"
ports:
- 8022:3000