专属域名
文档搜索
轩辕助手
Run助手
邀请有礼
返回顶部
快速返回页面顶部
收起
收起工具栏
轩辕镜像 官方专业版
轩辕镜像 官方专业版轩辕镜像 官方专业版官方专业版
首页个人中心搜索镜像

交易
充值流量我的订单
工具
提交工单镜像收录一键安装
Npm 源Pip 源Homebrew 源
帮助
常见问题
其他
关于我们网站地图

官方QQ群: 1072982923

inetsoftware/i-net-clear-reports Docker 镜像 - 轩辕镜像 | Docker 镜像高效稳定拉取服务

热门搜索:openclaw🔥nginx🔥redis🔥mysqlopenjdkcursorweb2apimemgraphzabbixetcdubuntucorednsjdk
i-net-clear-reports
inetsoftware/i-net-clear-reports
inetsoftware
i-net Clear Reports Reporting Application in a Container.
3 次收藏下载次数: 0状态:社区镜像维护者:inetsoftware仓库类型:镜像最近更新:6 天前
轩辕镜像,快一点,稳很多。点击查看
镜像简介版本下载
轩辕镜像,快一点,稳很多。点击查看

i-net Clear Reports Docker Container

This is a pre-build containerized version of the i-net Clear Reports reporting application. The container only brings the application and tools required to run the application.

The container does not provide any default users. You have to use the Sign Up method first. See below for advanced use cases.

Please have a look at our website for more information about the i-net Clear Reports.

Quickstart

Run the following command to start an i-net Clear Reports Server Docker Container:

bash
docker run -d -p 9000:9000 -e CONF_listener__port=9000 --name reporting inetsoftware/i-net-clear-reports

Available Tags

  • Version 25.x: latest, alpine-25
  • Version 24.x: alpine-24
  • Version 23.x: alpine-23
  • Version 22.x: alpine-22
  • Version 21.x: alpine-21
  • Version 20.x: alpine-20
  • Version 19.x: alpine-19
  • Version 18.x: alpine-18

Creating a pre-set configuration

The i-net Clear Reports Docker Container should be pre-configured using either a configuration properties file or environment variables. Either way, a local installation with the specific setup should be created first. Using the Maintenance module a backup of the configuration can be created and the configuration properties file in there can be used as a basis.

To have the container fully set up on startup you have to specify at least the following properties: CONF_listener__port and CONF_licensekey

In private cloud environments you have to set the property CONF_serverURL as well. It is recommended to set this property in other environments too.

Adding the configuration

A configuration file can be added by using a volume or any other means that adds a specified configuration to the container. The default configuration file can be used or a different one can be set using an environment variable. See Environment Properties Matrix.

Setting up the configuration using environment variables

To create the environment variable names use the following rule:

  • prefix the property with CONF__
  • replace every . (dot) with __ (two underlines)

To make the configuration reproducible and updatable you should use a docker-compose.yml file.

Example
yaml
version: '2.1'

services:

    reporting:
        image: 'inetsoftware/i-net-clear-reports:latest'
        restart: 'always'
        ports:
            - 9000:9000

        environment:
            - DEFAULT_PROPFILE=/tmp/defaultConfiguration.properties
            - DEFAULT_CONFIG=User/Default

            # Set the externally visible server url (un-comment and insert the correct url)
            #- CONF_serverURL=[***]

            # Set the license key (un-comment and insert the full license key)
            #- CONF_licensekey=...

            # Run the application on a pre-determined port for easier mapping
            - CONF_listener__port=9000

            # Customize an option, e.g. the theming colors
            - CONF_theme__themecolors={"@base-color":"#0a89dd","@primary-color":"#42a7ca"}

            # Enable logging, route log to the container log-file
            - CONF_log__engine=true
            - CONF_log__file=/dev/stdout

            # Location for automatic backups
            - CONF_BackupLocation=/home/reporting/.i-net software/reporting_User_Default/backup

Advanced Use Case

If there are more specific requirements, such as a pre-filled user database, a custom container should be created

Example: internal access with public account

Using the following compose example you can create a server that is started without any permission restrictions and can be used without further authentication using the public URL context.

yaml
version: '2.1'

services:

    reporting:
        image: 'inetsoftware/i-net-clear-reports:latest'
        restart: 'always'
        ports:
            # Not setting a host port allows to use --scale, but the external port varies
            - 9000/tcp

        environment:
            # Using the System/Default config is mandatory in cloud persistence environments
            - DEFAULT_CONFIG=System/Default

            # Set the license key (un-comment and insert the full license key)
            #- CONF_licensekey=...

            # Run the application on a pre-determined port for easier mapping
            - CONF_listener_ _port=9000

            # Only guest account is active. Activate webapi.
            - CONF_authentication__settings=[{"provider"\:"guest"}]
            - CONF_plugins__activated={"webapi.core"\:true}
Example: add PAM authentication and a default user

The following Dockerfile will create a user admin with the password password in a new container.

Dockerfile
FROM inetsoftware/i-net-clear-reports

# Switch to root user for installation
USER root

# Tools
RUN apk add --update linux-pam

# grant pam permissions to everybody
# Create User that we can log in with
RUN chmod +r /etc/shadow \
    && adduser -D -g "User" admin \
    && echo admin:password | chpasswd \
    && ln -s "/etc/pam.d/base-password" "/etc/pam.d/reporting"

# Switch back to product user
USER reporting
Mounting / Re-using a given configuration

If the data of the container should be persisted beyond restarts, e.g. for new container versions, a volume should be mounted.

The persistence and configuration is located in the home folder of the product user. You should use the following additional options to mount this folder:

bash
-v /folder/to/mount/from:/home/$PRODUCT -e FORCE_IMPORT_CONFIG=0
  • -v /folder/to/mount/from:/home/$PRODUCT - mount the specific folder to the home folder of the product user
  • -e FORCE_IMPORT_CONFIG=0 - specify that the given configuration should not be overwritten

the product user depends on the product you are using. It is determined by the $PRODUCT variable in the container. Possible values are: reporting, pdfc, cowork and helpdesk.

Adding additional fonts

The default container comes with, e.g. the DejaVu font pre-installed. Adding additional fonts, such as the license restricted Microsoft fonts Arial, require building a custom container. You can use the following Dockerfile as a basis.

Dockerfile
#############################################################################
# Prepare product
# Note: alpine 3.12 due to issue with newer versions of alpine!
FROM alpine:3.12 as builder

RUN apk add --update msttcorefonts-installer \
    && update-ms-fonts

FROM inetsoftware/i-net-<PRODUCT>:<TAG>

USER "root"

# Copy fonts from intermedia builder
COPY --from=builder /usr/share/fonts/truetype/msttcorefonts /usr/share/fonts/truetype/msttcorefonts

# Update font cache for product user
USER $PRODUCT
RUN fc-cache -fv /usr/share/fonts

Environment Properties Matrix

Property NameDefault ValueDescription
DEFAULT_PROPFILE/tmp/defaultConfiguration.propertiesConfiguration Properties file for initial setup
DEFAULT_CONFIGUser/DefaultConfiguration the server will be started with
FORCE_IMPORT_CONFIG1Forces the import of the given configuration, overwriting an already existing one. Set to 0 if a configuration is mounted.
DOCKER_ENTRYPOINT_SCRIPTAdditional inline-script to run before starting the server
CONF_systempermission__enabledfalseThe system permissions are deactivated by default. That means any user with a login has access to everything in the system. This property should be customized together with the authentication settings.
CONF_authentication__settings[{'provider':'product','userCanRegister':'true'}]The product login is activated by default and allows new users to be created. This should be customized in a production environment.
CONF_plugins__activated{'authentication.pam':false}The PAM authentication plugin is deactivated by default, because you have to create custom container in order to use it. Only optional plugins have to be enabled with the value true using this settings. To deactivate a non-optional plugin, use the value false.
CONF_prop__nameConfiguration property for server initialization. prop__name was derived from an actual property prop.name which can be taken from a previous backup.
inet_http_portSet a default HTTP port that overrides the one in the configuration. This is intended for shared cloud persistences
inet_https_portSet a default HTTPS port that overrides the one in the configuration. This is intended for shared cloud persistences
inet_persistenceURI of the persistence to use. Currently on MongoDB is supported. Will uses the file persistence if not set.

MongoDB Persistence

Using MongoDB Persistence is recommended in scenarios where no hard drive is available or the file system can disappear together with the server instance. For technical details, please have a look at the documentation.

To configure either persistences the environment variable inet_persistence has to be set up accordingly:

bash
inet_persistence=<PERSISTENCE URI>

# MongoDB
inet_persistence=mongodb://(<USERNAME>:<PASSWORD>@)<MONGODB SERVER>/<DATABASE>

If the platform does provide these URIs using environment variables, these have to be forwarded respectively.

Since the configuration is being stored in the persistence it might be required to set the application port to a specific value every time the container starts (e.g. Heroku provides an environment variable for that). This port has to be set using the environment variables: inet_http_port or init_https_port

Docker Compose Example

To bundle a docker container with a MongoDB persistence using Docker Compose, the following docker-compose.yml script can be used as a starting point:

yaml
version: '2.1'

services:

    reporting:
        image: 'inetsoftware/i-net-clear-reports:latest'
        restart: 'always'
        ports:
            # Not setting a host port allows to use --scale, but the external port varies
            - 9000/tcp

        environment:
            # Using the System/Default config is mandatory in cloud persistence environments
            - DEFAULT_CONFIG=System/Default

            # Set the externally visible server url (un-comment and insert the correct url)
            #- CONF_serverURL=[***]

            # Set the license key (un-comment and insert the full license key)
            #- CONF_licensekey=...

            # Run the application on a pre-determined port for easier mapping
            - CONF_listener_ _port=9000

            # Do not force the application to overwrite a previously imported configuration
            # or other instances using the same MongoDB will have their configuration modified
            - FORCE_IMPORT_CONFIG=0
            
            # Set up the connection the MongoDB persistence
            - inet_persistence=mongodb://root:example@mongo:27017/reporting

    mongo:
        image: mongo
        environment:
            MONGO_INITDB_ROOT_PASSWORD: example
            MONGO_INITDB_ROOT_USERNAME: root
        restart: always

The parameter FORCE_IMPORT_CONFIG should be set to 0 so that the configuration is imported only once versus every time the container is started. This way the configuration may be persisted and re-used on subsequent restarts or in a scaled environment.

Depending on the specific environment there may be some more options that have to be set. Please have a look at the Environment Properties Matrix.

Creating a load balanced environment

To distribute the computation load across several server nodes it possible to create a load balanced environment. It is crucial to know that each node will be frontend and backend server at the same time. The nodes can share the data persistence - using a MongoDB setup - so that comparisons are available across nodes.

A load ***, such as HAProxy, has to support some kind of sticky sessions so that a logged-in user will always be directed to the same node.

In case of the HAProxy you can use the balance hdr(Cookie) setting. To showcase a setup of i-net Clear Reports using HAProxy have a look at our gitHub example.

Installing Additional Plugins

Additional plugins can be added to the Docker container either during a custom Dockerfile build or on the fly during container startup. In both cases you can use the install-plugin command of the container:

bash
/usr/share/product $ install-plugin --help
Usage install all Plugins: /bin/install-plugin -p <product> -v <version>
Usage install defined plugins: /bin/install-plugin -p <product> -v <version> <list of plugins to install>
Usage install BETA Plugins: /bin/install-plugin -p <product> -v <version> -b <list of plugins to install>
Usage install additional persistence: /bin/install-plugin -s <type>

Plugin names can be derived, e.g. from the plugin store URL, specifically the path component after /pid: [***] → webapi.core

There are distinct containers available for each persistence type. The MongoDB persistence is installed in the default container that has no additional tag. Available persistences are: mongodb, cosmosdb, dynamodb.

Dockerfile Example

In a Dockerfile you can add the following lines to install a plugin:

Dockerfile
# Add Web API plugin 
RUN install-plugin web.api
Docker Compose Example

In a docker-compose.yml you can use the following setup to install a plugin:

yaml
version: '2.1'
services:
    service:
        command: >
            sh -c "
            install-plugin web.api &&
            ./startServer.sh -Dclearreports.config=User/Default -Dsetupautoexecution=true
            "

the original startServer.sh command can be determined using docker inspect on an already running container.

The example is incomplete and requires definition of the specific container.

Restarting the Service

In situations where the service is unresponsive but the container can still be accessed, the servers subprocess can be terminated and restarted without restarting the whole container. In this case, the user has to enter the container using shell and run the following command:

bash
ps xo pid,command | grep exitcode | grep -v grep | awk '{print $1}' | xargs -r kill -TERM
查看更多 i-net-clear-reports 相关镜像 →
clearlinux logo
clearlinux
Docker 官方镜像
已弃用的适用于Intel架构的Clear Linux操作系统官方Docker构建
182 次收藏500万+ 次下载
9 个月前更新
demisto/sane-pdf-reports logo
demisto/sane-pdf-reports
demisto
暂无描述
100万+ 次下载
5 个月前更新
demisto/sane-doc-reports logo
demisto/sane-doc-reports
demisto
暂无描述
1 次收藏50万+ 次下载
10 个月前更新
onlyoffice/docspace-clear-events logo
onlyoffice/docspace-clear-events
onlyoffice
暂无描述
1万+ 次下载
2 个月前更新
onlyoffice/4testing-docspace-clear-events logo
onlyoffice/4testing-docspace-clear-events
onlyoffice
暂无描述
10万+ 次下载
2 天前更新
biocontainers/clearcut logo
biocontainers/clearcut
biocontainers
暂无描述
8.5千+ 次下载
6 年前更新

轩辕镜像配置手册

探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式

Docker 配置

登录仓库拉取

通过 Docker 登录认证访问私有仓库

专属域名拉取

无需登录使用专属域名

K8s Containerd

Kubernetes 集群配置 Containerd

K3s

K3s 轻量级 Kubernetes 镜像加速

Dev Containers

VS Code Dev Containers 配置

Podman

Podman 容器引擎配置

Singularity/Apptainer

HPC 科学计算容器配置

其他仓库配置

ghcr、Quay、nvcr 等镜像仓库

系统配置

Linux

在 Linux 系统配置镜像服务

Windows/Mac

在 Docker Desktop 配置镜像

MacOS OrbStack

MacOS OrbStack 容器配置

Docker Compose

Docker Compose 项目配置

NAS 设备

群晖

Synology 群晖 NAS 配置

飞牛

飞牛 fnOS 系统配置镜像

绿联

绿联 NAS 系统配置镜像

威联通

QNAP 威联通 NAS 配置

极空间

极空间 NAS 系统配置服务

网络设备

爱快路由

爱快 iKuai 路由系统配置

宝塔面板

在宝塔面板一键配置镜像

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

使用与功能问题

docker search 报错:专属域名下仅支持 Docker Hub 查询

docker search 报错问题

网页搜不到镜像:Docker Hub 有但轩辕镜像搜索无结果

镜像搜索不到

离线传输镜像:无法直连时用 docker save/load 迁移

离线传输镜像

Docker 插件安装错误:application/vnd.docker.plugin.v1+json

Docker 插件安装错误

WSL 下 Docker 拉取慢:网络与挂载目录影响及优化

WSL 拉取镜像慢

轩辕镜像是否安全?镜像完整性校验(digest)说明

镜像安全性

如何用轩辕镜像拉取镜像?登录方式与专属域名配置

如何拉取镜像

错误码与失败问题

manifest unknown 错误:镜像不存在或标签错误

manifest unknown 错误

TLS/SSL 证书验证失败:Docker pull 时 HTTPS 证书错误

TLS 证书验证失败

DNS 解析超时:无法解析镜像仓库地址或连接超时

DNS 解析超时

410 Gone 错误:Docker 版本过低导致协议不兼容

410 错误:版本过低

402 Payment Required 错误:流量耗尽错误提示

402 错误:流量耗尽

401 UNAUTHORIZED 错误:身份认证失败或登录信息错误

身份认证失败错误

429 Too Many Requests 错误:请求频率超出专业版限制

429 限流错误

Docker login 凭证保存错误:Cannot autolaunch D-Bus(不影响登录)

凭证保存错误

账号 / 计费 / 权限

免费版与专业版区别:功能、限额与使用场景对比

免费版与专业版区别

支持的镜像仓库:Docker Hub、GCR、GHCR、K8s 等列表

轩辕镜像支持的镜像仓库

拉取失败是否扣流量?计费规则说明

拉取失败流量计费

KYSEC 权限不够:麒麟 V10/统信 UOS 下脚本执行被拦截

KYSEC 权限错误

如何申请开具发票?(增值税普票/专票)

开具发票

如何修改网站与仓库登录密码?

修改网站和仓库密码

配置与原理类

registry-mirrors 未生效:仍访问官方仓库或报错的原因

registry-mirrors 未生效

如何去掉镜像名称中的轩辕域名前缀?(docker tag)

去掉域名前缀

如何拉取指定架构镜像?(ARM64/AMD64 等多架构)

拉取指定架构镜像

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
inetsoftware/i-net-clear-reports
博客公告Docker 镜像公告与技术博客
热门镜像查看热门 Docker 镜像推荐
一键安装一键安装 Docker 并配置镜像源
镜像拉取问题咨询请 提交工单,官方技术交流群:1072982923。轩辕镜像所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
镜像拉取问题咨询请提交工单,官方技术交流群:。轩辕镜像所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
官方邮箱:点击复制邮箱
©2024-2026 源码跳动
官方邮箱:点击复制邮箱Copyright © 2024-2026 杭州源码跳动科技有限公司. All rights reserved.