A search interface for the Performing Patents Otherwise publication as part of 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 OPS 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.9'
-
- services:
-
- python:
- build: ./web
- container_name: python
- expose:
- - 5000
- env_file:
- - ./config.env.prod
- volumes:
- - ./web:/code
- command: gunicorn --bind 0.0.0.0:5000 "app:create_app()"
-
- nginx:
- image: nginx:latest
- container_name: nginx
- restart: unless-stopped
- ports:
- - "1337:80"
- volumes:
- - ./nginx-conf:/etc/nginx/conf.d
- depends_on:
- - python
-
- solr:
- container_name: solr
- image: solr:8.11.1
- ports:
- - '8983:8983'
- volumes:
- - solrdata:/var/solr
- - ./solr_config:/opt/solr/server/solr/configsets/custom
-
- volumes:
- solrdata:
|