Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Dockerfile
  2.  
  3. FROM ubuntu:bionic
  4.  
  5. ENV passwordA
  6.  
  7. RUN scrapy runspider download_epf.py -o files.json
  8.  
  9. docker-compose.yml
  10.  
  11. services:
  12. web-service:
  13. image: ${DOCKER_REGISTRY}web-service:${DOCKER_IMAGE_LABEL:-latest}
  14. init: true
  15. build:
  16. context: .
  17. restart: on-failure
  18. deploy:
  19. resources:
  20. limits:
  21. memory: 2G
  22. cpus: '0.4'
  23. environment:
  24. - passwordA
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement