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
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

docker-compose.yml 509B

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. ports:
  9. - '9000:9000'
  10. volumes:
  11. - ./site:/var/www/html
  12. nginx:
  13. container_name: nginx
  14. image: nginx:latest
  15. ports:
  16. - '8080:80'
  17. volumes:
  18. - ./nginx/default.conf:/etc/nginx/conf.d/default.conf
  19. volumes_from:
  20. - php
  21. solr:
  22. container_name: solr
  23. image: solr:latest
  24. ports:
  25. - '8983:8983'
  26. volumes:
  27. - ./solrdata:/var/solr