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
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

docker-compose.yml 507B

123456789101112131415161718192021222324252627282930313233
  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-conf:/etc/nginx/conf.d
  19. - ./site:/var/www/html
  20. solr:
  21. container_name: solr
  22. image: solr:latest
  23. ports:
  24. - '8983:8983'
  25. volumes:
  26. - solrdata:/var/solr
  27. volumes:
  28. solrdata: