2018-03-16 10:52:22 +01:00
|
|
|
version: '3'
|
|
|
|
services:
|
2019-11-02 05:05:08 +01:00
|
|
|
|
2020-12-12 07:20:20 +01:00
|
|
|
redis-cache:
|
2019-10-01 22:38:59 +02:00
|
|
|
image: redis
|
2019-11-02 05:05:08 +01:00
|
|
|
working_dir: /cache
|
|
|
|
command: ./cache.conf --daemonize no
|
|
|
|
volumes:
|
|
|
|
- ./cache:/cache
|
|
|
|
|
2020-12-12 07:20:20 +01:00
|
|
|
redis-indexing:
|
|
|
|
image: redis
|
|
|
|
working_dir: /indexing
|
|
|
|
command: ./indexing.conf --daemonize no
|
|
|
|
volumes:
|
|
|
|
- ./indexing:/indexing
|
|
|
|
|
2018-03-16 10:52:22 +01:00
|
|
|
lookyloo:
|
2019-11-02 05:05:08 +01:00
|
|
|
build: .
|
|
|
|
working_dir: /lookyloo
|
|
|
|
tty: true
|
|
|
|
command:
|
|
|
|
- /bin/sh
|
|
|
|
- -c
|
|
|
|
- |
|
2020-12-12 07:20:20 +01:00
|
|
|
poetry run start
|
|
|
|
tail -F ./LICENSE
|
2019-11-02 05:05:08 +01:00
|
|
|
volumes:
|
|
|
|
- ./cache:/lookyloo/cache
|
2020-12-12 07:20:20 +01:00
|
|
|
- ./indexing:/lookyloo/indexing
|
2019-11-02 05:05:08 +01:00
|
|
|
- ./scraped:/lookyloo/scraped
|
2023-03-06 14:48:59 +01:00
|
|
|
- ./archived_captures:/lookyloo/archived_captures
|
2022-04-08 14:18:58 +02:00
|
|
|
- ./discarded:/lookyloo/discarded_captures
|
2019-11-02 05:05:08 +01:00
|
|
|
- ./user_agents:/lookyloo/user_agents
|
2020-07-07 01:00:59 +02:00
|
|
|
- ./config:/lookyloo/config
|
2023-03-06 09:04:26 +01:00
|
|
|
- ./logs:/lookyloo/logs
|
2023-03-06 14:48:59 +01:00
|
|
|
- ./logs_web:/lookyloo/website/logs
|
2019-11-02 05:05:08 +01:00
|
|
|
ports:
|
|
|
|
- "5100:5100"
|
|
|
|
links:
|
2020-12-12 07:20:20 +01:00
|
|
|
- "redis-cache"
|
|
|
|
- "redis-indexing"
|