All checks were successful
Reindex Knowledge Base / reindex (push) Successful in 3s
Adds title, description, type, domain, and tags frontmatter to every doc for improved KB semantic search. The description field is prepended to every search chunk, and domain/type/tags enable filtered queries. Type values: context, guide, runbook, reference, troubleshooting Domain values match directory structure (networking, docker, etc.) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
61 lines
1.4 KiB
Markdown
61 lines
1.4 KiB
Markdown
---
|
|
title: "OmniTools Deployment Reference"
|
|
description: "Deployment and management reference for the OmniTools self-hosted web utility suite (image/video/PDF processing) running on the n8n LXC at 10.10.0.210:8080. All processing is client-side."
|
|
type: reference
|
|
domain: server-configs
|
|
tags: [omni-tools, docker, self-hosted, utilities, n8n-lxc]
|
|
---
|
|
|
|
# OmniTools - Self-Hosted Utility Suite
|
|
|
|
**Container**: omni-tools
|
|
**Image**: iib0011/omni-tools:latest
|
|
**Port**: 8080 (external) → 80 (internal)
|
|
**URL**: http://10.10.0.210:8080
|
|
|
|
## About
|
|
|
|
OmniTools is a comprehensive web-based utility suite providing tools for:
|
|
- Image/Video/Audio processing
|
|
- PDF manipulation
|
|
- Text formatting
|
|
- Date/time calculations
|
|
- Mathematical operations
|
|
- Data transformation
|
|
|
|
**Privacy**: All files are processed entirely client-side - nothing leaves your device.
|
|
|
|
## Management
|
|
|
|
```bash
|
|
# Access container
|
|
ssh root@10.10.0.210
|
|
|
|
# View logs
|
|
cd /opt/omni-tools
|
|
docker compose logs -f omni-tools
|
|
|
|
# Restart
|
|
docker compose restart omni-tools
|
|
|
|
# Update
|
|
docker compose pull
|
|
docker compose up -d
|
|
```
|
|
|
|
## Access
|
|
|
|
- **Internal**: http://10.10.0.210:8080
|
|
- **External**: Configure reverse proxy at omnitools.manticorum.com (NPM)
|
|
|
|
## Repository
|
|
|
|
- **GitHub**: https://github.com/iib0011/omni-tools
|
|
- **Docker Hub**: https://hub.docker.com/r/iib0011/omni-tools
|
|
|
|
## Deployment Date
|
|
|
|
**Deployed**: 2026-02-03
|
|
**By**: Claude Code
|
|
**Host**: n8n LXC (10.10.0.210)
|