Skip to content

Commit

Permalink
connect to Tika
Browse files Browse the repository at this point in the history
  • Loading branch information
woodthom2 committed Jun 24, 2023
1 parent 59c9256 commit 4bdc4e3
Showing 1 changed file with 19 additions and 13 deletions.
32 changes: 19 additions & 13 deletions front_end/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
version: "3"
version: '3.3'

services:
protocols-front:
image: regprotocolsfds.azurecr.io/protocols-front
build: .
ports:
- "80:80"
environment:
- TIKA_SERVER_ENDPOINT=http://protocols-tika:9998
protocols-tika:
image: regprotocolsfds.azurecr.io/protocols-tika
build: ./tika
ports:
- "9998:9998"
api:
image: fastdatascience/clinical_trial_risk:20230623214440_cf82f4e
depends_on:
- tika
ports:
- "8000:80"
restart: always
environment:
DOWNLOAD_DIRECTORY: /downloads
TIKA_SERVER_ENDPOINT: http://tika:9998


tika:
image: apache/tika:2.8.0.0-full
ports:
- "9998:9998"
restart: always

0 comments on commit 4bdc4e3

Please sign in to comment.