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.

31 lines
511B

  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