Self-hosted Next.js data conversion tool. Runs entirely in the browser. No backend. No tracking.
1.5K
DataMorph is a privacy-focused, client-side data conversion tool built with Next.js.
This Docker image allows you to self-host DataMorph using a secure, lightweight, production-ready container.
š All data processing happens in the browser. No backend. No storage. No tracking.
docker run -d \
--name datamorph \
-p 3000:3000 \
yashashavgoyal/datamorph:latest
Open in browser:
http://localhost:3000
| Variable | Description |
|---|---|
| NEXT_PUBLIC_SITE_URL | Public URL of the deployed site |
docker build \
--build-arg NEXT_PUBLIC_SITE_URL=https://example.com \
-t yashashavgoyal/datamorph .
ā ļø NEXT_PUBLIC_SITE_URL is injected at build time (Next.js behavior).
version: "3.8"
services:
datamorph:
image: yashashavgoyal/datamorph:latest
container_name: datamorph
ports:
- "3000:3000"
restart: unless-stopped
This Docker image is built directly from the official DataMorph codebase. View source, CI, and release history: https://github.com/YashashavGoyal/datamorphā
DataMorph is fully open-source. Explore, audit, and contribute on GitHub
Yashashav Goyal
MIT License
Content type
Image
Digest
sha256:6b8d5ca30ā¦
Size
70.4 MB
Last updated
8 months ago
docker pull yashashavgoyal/datamorph