clamsproject / mmif-summarizer

Apache License 2.0
0 stars 0 forks source link

Converter does not run in pipeline-runner #1

Open marcverhagen opened 3 years ago

marcverhagen commented 3 years ago

Used the following docker-compose.yml file:

version: '3'

services:

  pipeline:
    image: clams-pipeline
    container_name: clams_pipeline
    stdin_open: true
    tty: true
    volumes:
      - "/private/var/archive:/data"
      - "./:/app/host"
    ports:
      - '5000:5000'

  pbcore:
    image: mmif-pbcore-converter
    container_name: clams_pbcore
    build:
      dockerfile: Dockerfile
      context: ../mmif-pbcore-converter
    volumes:
      - "/private/var/archive:/data"
    ports:
      - '5001:5000'