-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
47 lines (46 loc) · 978 Bytes
/
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
version: '3.4'
services:
extractor:
image: oeh-search-meta:latest
ports:
- "5057:5057"
links:
- splash
- accessibility
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:5057/_ping" ]
interval: 30s
timeout: 5s
retries: 3
start_period: 40s
networks:
- backend
splash:
image: scrapinghub/splash:master
command: --maxrss 4000
restart: always
expose:
- "8050"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8050/_ping"]
interval: 30s
timeout: 5s
retries: 3
start_period: 40s
networks:
- backend
accessibility:
image: oeh-search-meta_lighthouse:latest
restart: always
expose:
- "5058"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5058/_ping"]
interval: 30s
timeout: 5s
retries: 3
start_period: 40s
networks:
- backend
networks:
backend: