-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
69 lines (64 loc) · 1.71 KB
/
docker-compose.yml
File metadata and controls
69 lines (64 loc) · 1.71 KB
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
services:
api:
container_name: ducksmanager-api
image: ghcr.io/bperel/ducksmanager-api
restart: always
networks:
- public-network
- dm-api-network
- dm-db-network
api-websocket:
container_name: ducksmanager-api-websocket
image: ghcr.io/bperel/ducksmanager-api:websocket
restart: always
volumes:
- ./latest-whattheduck-bundle.txt:/app/latest-whattheduck-bundle.txt
- /data/covers:${ENTRYURLS_DIR}
- /data/covers-by-storycode:${ENTRYURLS_DIR}-by-storycode
networks:
- public-network
- dm-api-network
- dm-db-network
api-story-search:
container_name: ducksmanager-api-story-search
image: ghcr.io/bperel/ducksmanager-api:story-search
restart: always
volumes:
- /data/covers:${ENTRYURLS_DIR}
- /data/covers-by-storycode:${ENTRYURLS_DIR}-by-storycode
networks:
- public-network
- dm-api-network
- dm-db-network
pastec:
container_name: pastec
image: "bperel/pastec-ubuntu-1704-timestamps"
restart: always
command: "./pastec -p 4212 -i /pastec-index-last.dat /pastec/data/visualWordsORB.dat"
volumes:
- ./pastec-index-last.dat:/pastec-index-last.dat:ro
networks:
- dm-api-network
pastec-improved:
container_name: pastec-improved
image: "bperel/pastec:improved"
restart: always
command:
[
"-p",
"4212",
"-i",
"/pastec-index-last.dat",
"/pastec/visualWordsORB.dat",
]
volumes:
- ./pastec-index-last.dat:/pastec-index-last.dat:ro
networks:
- dm-api-network
networks:
dm-api-network:
name: dm-api-network
public-network:
external: true
dm-db-network:
external: true