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
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 satır
544B

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