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
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 satır
392B

  1. version: '3.9'
  2. services:
  3. python:
  4. build: ./web
  5. container_name: python
  6. ports:
  7. - "5000:5000"
  8. volumes:
  9. - ./web:/code
  10. env_file:
  11. - ./config.env
  12. solr:
  13. container_name: solr
  14. image: solr:8.11.1
  15. ports:
  16. - '8983:8983'
  17. volumes:
  18. - solrdata:/var/solr
  19. - ./solr_config:/opt/solr/server/solr/configsets/custom
  20. volumes:
  21. solrdata: