-
Notifications
You must be signed in to change notification settings - Fork 83
/
docker-compose.yml
42 lines (39 loc) · 979 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
version: '3'
services:
redis-cache:
image: redis
working_dir: /cache
command: ./cache.conf --daemonize no
volumes:
- ./cache:/cache
redis-indexing:
image: redis
working_dir: /indexing
command: ./indexing.conf --daemonize no
volumes:
- ./indexing:/indexing
lookyloo:
build: .
working_dir: /lookyloo
tty: true
command:
- /bin/sh
- -c
- |
poetry run start
tail -F ./LICENSE
volumes:
- ./cache:/lookyloo/cache
- ./indexing:/lookyloo/indexing
- ./scraped:/lookyloo/scraped
- ./archived_captures:/lookyloo/archived_captures
- ./discarded:/lookyloo/discarded_captures
- ./user_agents:/lookyloo/user_agents
- ./config:/lookyloo/config
- ./logs:/lookyloo/logs
- ./logs_web:/lookyloo/website/logs
ports:
- "5100:5100"
links:
- "redis-cache"
- "redis-indexing"