Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryichk/scrapy-on-docker
Scrapy on Docker template.
https://github.com/ryichk/scrapy-on-docker
docker python3 scrapy
Last synced: 7 days ago
JSON representation
Scrapy on Docker template.
- Host: GitHub
- URL: https://github.com/ryichk/scrapy-on-docker
- Owner: ryichk
- Created: 2021-05-29T14:56:17.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-06-06T03:14:33.000Z (over 3 years ago)
- Last Synced: 2024-10-10T02:40:51.836Z (28 days ago)
- Topics: docker, python3, scrapy
- Language: Dockerfile
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Scrapy on Docker
## Set UP
```sh
docker build --tag project_name .
docker run -it --rm --name project_name -v $PWD:/app project_name# Inside the docker container
scrapy startproject app ./## Generate Spider
scrapy genspider
```