chore(output): prefix docker identifiers

This commit is contained in:
2025-10-15 13:43:15 -05:00
parent d7682ee87d
commit b3b02bab29
3 changed files with 11 additions and 6 deletions

View File

@@ -1,3 +1,8 @@
# ResumeCustomizer # RCEO-AI ResumeCustomizer
A system to use agentic AI to take a markdown base resume and one or more job descriptions and produce a customized resume in markdown/doc/pdf for each job description. A system that uses agentic AI to turn a Markdown base resume and job descriptions into tailored DOCX/PDF deliverables.
## Repository Layout
- `output/` conversion pipeline that watches for approved Markdown resumes, renders export formats, and archives the sources. See the detailed [output pipeline guide](output/README.md).
Additional documentation will grow alongside the `input/` tooling as that side of the project is finalized.

View File

@@ -1,11 +1,11 @@
name: ResumeCustomizer-OutputProcessor name: RCEO-AI-ResumeCustomizer-Output
services: services:
resumecustomizer-outputprocessor: rceo-ai-resumecustomizer-output-processor:
build: build:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
container_name: ResumeCustomizer-OutputProcessor container_name: RCEO-AI-ResumeCustomizer-Output-Processor
restart: always restart: always
environment: environment:
PUID: "${LOCAL_UID:-1000}" PUID: "${LOCAL_UID:-1000}"

View File

@@ -17,7 +17,7 @@ cd output/Docker
./run-output-processor.sh up -d ./run-output-processor.sh up -d
``` ```
The script detects either the Docker Compose plugin or the legacy `docker-compose` binary and forwards any additional arguments you supply (`down`, `logs`, etc.). The script detects either the Docker Compose plugin or the legacy `docker-compose` binary and forwards any additional arguments you supply (`down`, `logs`, etc.). The stack registers under the project name `RCEO-AI-ResumeCustomizer-Output`, and the primary container is `RCEO-AI-ResumeCustomizer-Output-Processor`.
## What the Watcher Does ## What the Watcher Does
1. Polls `ForRelease/inbox` every few seconds for Markdown files. 1. Polls `ForRelease/inbox` every few seconds for Markdown files.