A search interface for the Performing Patents Otherwise publication as part of the Politics of Patents case study (part of Copim WP6): this parses data from the archive of RTF files and provides additional data from the European Patent Office OPS API. https://patents.copim.ac.uk
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

docker-compose.prod.yml 652B

2 år sedan
2 år sedan
12345678910111213141516171819202122232425262728293031323334353637
  1. version: '3.9'
  2. services:
  3. python:
  4. build: ./web
  5. container_name: python
  6. expose:
  7. - 5000
  8. env_file:
  9. - ./config.env.prod
  10. volumes:
  11. - ./web:/code
  12. command: gunicorn --bind 0.0.0.0:5000 "app:create_app()"
  13. nginx:
  14. image: nginx:latest
  15. container_name: nginx
  16. restart: unless-stopped
  17. ports:
  18. - "1337:80"
  19. volumes:
  20. - ./nginx-conf:/etc/nginx/conf.d
  21. depends_on:
  22. - python
  23. solr:
  24. container_name: solr
  25. image: solr:8.11.1
  26. ports:
  27. - '8983:8983'
  28. volumes:
  29. - solrdata:/var/solr
  30. - ./solr_config:/opt/solr/server/solr/configsets/custom
  31. volumes:
  32. solrdata: