mirror of https://github.com/CIRCL/lookyloo
25 lines
505 B
YAML
25 lines
505 B
YAML
version: '3'
|
|
services:
|
|
redis:
|
|
image: redis
|
|
splash:
|
|
image: "scrapinghub/splash"
|
|
expose:
|
|
- "8050"
|
|
- "5023"
|
|
command: --disable-ui --disable-lua
|
|
lookyloo:
|
|
build: .
|
|
ports:
|
|
- "5100:5100"
|
|
tty: true
|
|
command:
|
|
- /bin/sh
|
|
- -c
|
|
- |
|
|
pipenv run run_backend.py --start
|
|
pipenv run async_scrape.py &
|
|
pipenv run start_website.py
|
|
#volumes:
|
|
# - /path/to/your/data/directory:/lookyloo/scraped
|