Q-Cloud File Parser Quick Start

Prerequisites

  • A container runtime installed on the host, such as Docker or Podman.

  • Input files available in a host directory.

  • Access to the Q-Cloud API and a valid user account.

1. Get The Image

Pull the published image from the ACG registry with your container runtime:

docker pull registry.acgpulse.se/qcloud-file-parser:3.0.0

2. Prepare Your Input Directory

mkdir -p /tmp/qcloud/in

Place the files you want to import into that directory. The container reads from /data/input by default, so bind your host directory there.

3. Run The Parser

docker run --rm \
  -v /tmp/qcloud/in:/data/input \
  -e QWEB_USERNAME=my-user \
  -e QWEB_PASSWORD=my-password \
  -e URL=https://api.example \
  registry.acgpulse.se/qcloud-file-parser:3.0.0

Set PARSER_MODE when you want ZWZ or UNILIN-UNIMAT instead of the generic ACG flow. Those modes also use a single FILE_REGEX value to match files. Use --help to print the built-in usage and environment reference before running the container.

4. Review The Result

The parser writes a summary to stdout at the end of the run. Use that summary to see which files were processed, skipped, or failed.