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
Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- version: '3.8'
-
- services:
-
- php:
- container_name: php
- build: ./php
- env_file:
- - config.env
- volumes:
- - ./site:/var/www/html
-
- nginx:
- container_name: nginx
- image: nginx:latest
- ports:
- - '8080:80'
- volumes:
- - ./nginx-conf:/etc/nginx/conf.d
- - ./site:/var/www/html
-
- solr:
- container_name: solr
- image: solr:latest
- ports:
- - '8983:8983'
- volumes:
- - solrdata:/var/solr
- - ./solr_config:/opt/solr/server/solr/configsets/custom
-
- volumes:
- solrdata:
|