Skip to content

Instantly share code, notes, and snippets.

@rnovec
Created March 17, 2020 14:43
Show Gist options
  • Save rnovec/17e47edda8f46b8ee70a0154f9e88757 to your computer and use it in GitHub Desktop.
Save rnovec/17e47edda8f46b8ee70a0154f9e88757 to your computer and use it in GitHub Desktop.
Docker compose for Scrapy App
# Docker Compose Services
#
# For more information about this section see:
# https://docs.docker.com/compose/
version: '3'
services:
###
# services
###
scrapy:
build: .
network_mode: host
command: scrapyd # python -m scrapyd_heroku.manage
volumes:
- .:/app
ports:
- "6800:6800"
tty: true
stdin_open: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment