jeffeux's picture
Add application file
21e639d
raw
history blame contribute delete
508 Bytes
version: "3"
services:
scraptt:
build: .
environment:
- PYTHON_ENV=production
depends_on:
- redis
links:
- redis
# define your crawler here!
command: bash -c "scrapy crawl ptt -a boards=Soft_Job -a index_from=1500 -a index_to=1500 -a ip_cache=True"
volumes:
- "./data:/app/data"
redis:
image: redis:7
restart: always
healthcheck:
test: "redis-cli ping"
interval: 3s
timeout: 3s
retries: 5
start_period: 5s