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 kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- version: '3.8'
-
- services:
-
- php:
- container_name: php
- image: php:8.0-fpm
- env_file:
- - config.env
- ports:
- - '9000:9000'
- volumes:
- - ./site:/var/www/html
-
- nginx:
- container_name: nginx
- image: nginx:latest
- ports:
- - '8080:80'
- volumes:
- - ./nginx/default.conf:/etc/nginx/conf.d/default.conf
- volumes_from:
- - php
-
- solr:
- container_name: solr
- image: solr:latest
- ports:
- - '8983:8983'
- volumes:
- - ./solrdata:/var/solr
|