Sha256: 29e38f867198a0fd52d5b8c911f2ac8de9ede4e0d6301e866817094c32f9f861

Contents?: true

Size: 1.32 KB

Versions: 8

Compression:

Stored size: 1.32 KB

Contents

version: '3'
services:
  hl7_validator_service:
    image: infernocommunity/inferno-resource-validator
    environment:
      # Defines how long validator sessions last if unused, in minutes:
      # Negative values mean sessions never expire, 0 means sessions immediately expire
      SESSION_CACHE_DURATION: -1
    volumes:
      - ./<%= ig_path %>:/app/igs
      # To let the service share your local FHIR package cache,
      # uncomment the below line
      # - ~/.fhir:/home/ktor/.fhir
  validator_service:
    image: infernocommunity/fhir-validator-service
    # Update this path to match your directory structure
    volumes:
      - ./<%= ig_path %>:/home/igs
  fhir_validator_app:
    image: infernocommunity/fhir-validator-app
    depends_on:
      - validator_service
    environment:
      EXTERNAL_VALIDATOR_URL: http://localhost/validatorapi
      VALIDATOR_BASE_PATH: /validator
  fhirpath:
    image: infernocommunity/fhirpath-service
    ports:
      - "6789:6789"
  nginx:
    image: nginx
    volumes:
      - ./config/nginx.background.conf:/etc/nginx/nginx.conf
    ports:
      - "80:80"
    command: [nginx, '-g', 'daemon off;']
    depends_on:
      - fhir_validator_app
      - fhirpath
  redis:
    image: redis
    ports:
      - "6379:6379"
    volumes:
      - ./data/redis:/data
    command: redis-server --appendonly yes

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
inferno_core-0.6.1 lib/inferno/apps/cli/templates/docker-compose.background.yml.tt
inferno_core-0.6.0 lib/inferno/apps/cli/templates/docker-compose.background.yml.tt
inferno_core-0.5.4 lib/inferno/apps/cli/templates/docker-compose.background.yml.tt
inferno_core-0.5.3 lib/inferno/apps/cli/templates/docker-compose.background.yml.tt
inferno_core-0.5.2 lib/inferno/apps/cli/templates/docker-compose.background.yml.tt
inferno_core-0.5.1 lib/inferno/apps/cli/templates/docker-compose.background.yml.tt
inferno_core-0.5.0 lib/inferno/apps/cli/templates/docker-compose.background.yml.tt
inferno_core-0.4.44 lib/inferno/apps/cli/templates/docker-compose.background.yml.tt