openlmis/requisitionOpenLMIS申请服务(OpenLMIS Requisition Service)是OpenLMIS系统的核心服务组件,专门提供申请(Requisition)相关功能。该服务负责处理OpenLMIS系统中的申请流程管理,包括申请的创建、提交、审批和跟踪等核心业务流程。
项目源码托管于GitHub:[***]
通过Docker运行服务的基本命令:
bashdocker run -d --name openlmis-requisition \ -p 8080:8080 \ --link openlmis-db:db \ --link openlmis-service:service \ openlmis/requisition:latest
服务运行需配置以下关键环境变量(具体值需根据部署环境调整):
DB_HOST: 数据库主机地址(如db)DB_PORT: 数据库端口(默认5432)DB_NAME: 数据库名称(如openlmis)DB_USER: 数据库访问用户名DB_PASSWORD: 数据库访问密码SERVICE_REGISTRY_URL: 服务注册中心地址(如OpenLMIS服务注册组件URL)在OpenLMIS系统整体部署中,可通过Docker Compose配置集成该服务:
yamlversion: '3' services: requisition: image: openlmis/requisition:latest ports: - "8080:8080" environment: - DB_HOST=db - DB_PORT=5432 - DB_NAME=openlmis - DB_USER=openlmis_user - DB_PASSWORD=secure_password - SERVICE_REGISTRY_URL=[***] depends_on: - db - service-registry db: image: postgres:13 volumes: - postgres-data:/var/lib/postgresql/data environment: - POSTGRES_DB=openlmis - POSTGRES_USER=openlmis_user - POSTGRES_PASSWORD=secure_password service-registry: image: openlmis/service-registry:latest ports: - "8761:8761" volumes: postgres-data:
manifest unknown 错误
TLS 证书验证失败
DNS 解析超时
410 错误:版本过低
402 错误:流量耗尽
身份认证失败错误
429 限流错误
凭证保存错误
来自真实用户的反馈,见证轩辕镜像的优质服务