feat: restructure ht-docker-tools repository with enhanced Deno support and NVM integration

- Removed Dockerfile and added multiple Dockerfiles for various tools (ClickHouse, MongoDB, MinIO, Caddy, Redis) with Deno runtime.
- Updated package.json to reflect new repository structure and versioning.
- Added comprehensive README and technical notes for architecture overview and usage.
- Implemented build and test scripts for streamlined image creation and validation.
- Introduced bash scripts for NVM functionality in Docker images.
This commit is contained in:
2025-11-27 13:10:00 +00:00
parent 7356e07410
commit a15dc3f672
19 changed files with 1006 additions and 21 deletions

8
Dockerfile_caddy Normal file
View File

@@ -0,0 +1,8 @@
FROM caddy:latest
LABEL author="Task Venture Capital GmbH <hello@task.vc>"
# Caddy uses Alpine base, install Deno from Alpine edge
RUN apk add --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community deno
# Verify Deno installation
RUN deno --version