A search interface for data from 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 API. https://patents.copim.ac.uk
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

docker-compose.yml 511B

123456789101112131415161718192021222324252627282930
  1. version: '3.8'
  2. services:
  3. php:
  4. container_name: php
  5. build:
  6. context: ./php
  7. ports:
  8. - '9000:9000'
  9. volumes:
  10. - ./site:/var/www/html
  11. nginx:
  12. container_name: nginx
  13. image: nginx:latest
  14. ports:
  15. - '8080:80'
  16. volumes:
  17. - ./site:/var/www/html
  18. - ./nginx/default.conf:/etc/nginx/conf.d/default.conf
  19. depends_on:
  20. - php
  21. solr:
  22. container_name: solr
  23. image: solr:latest
  24. ports:
  25. - '8983:8983'
  26. volumes:
  27. - ./solrdata:/var/solr