A privacy-respecting Pinterest-style image search with no login prompts. Forked from Binternet with quality of life features added (image previews, theme switcher, infinite scroll).
- API-less Pinterest image searching.
- Pinterest does not see the IP of the end user, only the instance IP.
- Image proxy support.
- Pinterest-inspired masonry frontend.
Pinternext doesn't host any content. All content shown by Pinternext is from Pinterest™. Pinterest is a registered trademark of Pinterest Inc. Pinternext is not affiliated with Pinterest Inc. Any issues with content shown on a Pinternext instance need to be reported to Pinterest, not the instance host's internet provider or domain provider.
Cloudflare is a registered trademark of Cloudflare, Inc. Pinternext is not affiliated with Cloudflare, Inc.
Use Docker Compose:
services:
pinternext:
image: node:20-alpine
container_name: pinternext
working_dir: /app
command: sh -c "npm install && npm run dev"
ports:
- "3032:3000"
volumes:
- /appdata/pinternext:/app
- /appdata/pinternext-node-modules:/app/node_modules
environment:
- HOST=0.0.0.0
- PORT=3000
restart: unless-stopped