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
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

docker-compose.yml 476B

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