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
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

32 linhas
509B

  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