Sha256: 325c2b833210408818ae640b672a1d49ceaf75d20422bb3e2c4e5e72dda0962c

Contents?: true

Size: 1.22 KB

Versions: 6

Compression:

Stored size: 1.22 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
  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
  redis:
    image: redis
    ports:
      - "6379:6379"
    volumes:
      - ./data/redis:/data
    command: redis-server --appendonly yes

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
inferno_core-0.4.43 lib/inferno/apps/cli/templates/docker-compose.background.yml.tt
inferno_core-0.4.42 lib/inferno/apps/cli/templates/docker-compose.background.yml.tt
inferno_core-0.4.41 lib/inferno/apps/cli/templates/docker-compose.background.yml.tt
inferno_core-0.4.40 lib/inferno/apps/cli/templates/docker-compose.background.yml.tt
inferno_core-0.4.39 lib/inferno/apps/cli/templates/docker-compose.background.yml.tt
inferno_core-0.4.38 lib/inferno/apps/cli/templates/docker-compose.background.yml.tt