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
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

33 lines
532B

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