-
Notifications
You must be signed in to change notification settings - Fork 0
docs: Update contributor docs to reflect Docker consolidation into main repo #21
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,5 +8,7 @@ This monorepo contains: | |
|
|
||
| - The main CLI tool | ||
| - [`doc-detective-common`](doc-detective-common): JSON schema definitions, schema validation logic, and path resolution logic (located in `src/common/`) | ||
| - Container configurations: Dockerfiles and build scripts for the official Docker images (located in `src/container/`) | ||
| - VS Code extension: The Doc Detective extension for Visual Studio Code (located in `src/vscode/`) | ||
|
|
||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Citation: Added VS Code extension entry based on PR #192 which merges the extension from |
||
| This repo depends on [`doc-detective-core`](doc-detective-core) for the primary testing logic. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,10 @@ | ||
| --- | ||
| title: docker-image (alpha) | ||
| title: docker-image (deprecated) | ||
| --- | ||
|
|
||
| > This repo is in alpha. It's not ready for production use. | ||
| [`docker-image`](https://github.com/doc-detective/docker-image) is a Docker image that runs Doc Detective in a container. This repository is deprecated and archived—Docker image development is now in the main [`doc-detective`](doc-detective) repository under `src/container/`. | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Citation: PR #191 consolidates Docker image development into the main |
||
|
|
||
| [`docker-image`](https://github.com/doc-detective/docker-image) runs Doc Detective in a container. While Doc Detective can run on most machines as-is, this Docker image simplifies installation and running Doc Detective on machines without Node.js or with heightened security requirements. | ||
| The Docker image simplifies installation and running Doc Detective on machines without Node.js or with heightened security requirements. | ||
|
|
||
| ## What's included | ||
|
|
||
|
|
@@ -16,4 +16,4 @@ The Docker image includes: | |
| - **DITA-OT**: DITA Open Toolkit for DITA content transformation | ||
| - **Java Runtime**: Required for DITA-OT operations | ||
|
|
||
| This repo depends on [`doc-detective`](doc-detective) for performing the tests. | ||
| To contribute to Docker image development, see the [`doc-detective`](doc-detective) repository. | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Citation: PR #191 adds
src/container/directory containinglinux.Dockerfile,windows.Dockerfile, andscripts/build.jsfor building the official Docker images.View source