Selfhosted
-
Nextcloud just deleted all of my files, why did it do this?
For a long time I've used OneDrive to sync all of my files and keep them safe, but I've been really getting into self hosting all my own services, so today I set up NextCloud to replace it. I told it to sync my OneDrive folder, and it did it's best. It copied the file structure and had all the directories and everything but emptied every folder, it deleted every single file I had on my OneDrive, now all I have is empty folders.
Luckily OneDrive has a file recovery system where I can give it a time and date to revert back to so my data should all be safe, but why on earth did it do that in the first place? This was incredibly stressful and terrifying I thought I lost all my work. What did I do wrong?
-
ChartDB (v1.2.0) - open-source database diagram visualization tool
Hey all!
About three weeks ago, I introduced ChartDB to this community and received a great response with tons of positive feedback and feature requests. Thank you for the amazing support!
recap of ChartDB: For those new to ChartDB, it simplifies database design and visualization, similar to tools like DBeaver, dbdiagram, and DrawSQL, but is completely open-source and self-hosted.
https://github.com/chartdb/chartdb
Key features:
- Instant Schema Import - Import your database schema with just one query.
- AI-Powered DDL Export - Generate scripts for easy database migration.
- Broad Database Support - Works with PostgreSQL, MySQL, SQLite, MSSQL, ClickHouse, and more.
- Customizable ER Diagrams - Visualize your database structure as needed.
- Open-Source & Self-Hostable - Free, flexible, and transparent.
What’s New in v1.20 (2024-11-17)
- Sharing Capabilities - Import and export diagrams easily for better collaboration.
- Duplicate table: duplicate table from the canvas and sidebar.
- Snap to Grid - Toggle or hold shift to precisely position elements.
- New Templates Added - Now includes templates for Laravel, Django, Twitter, and more.
- Docker Build Support - Includes OpenAI key support for Docker builds.
Bug Fixes & Improvements:
- Optimized Bundle Size - Leaner builds for faster loading times.
- Internationalization (i18n) - Added support for Korean, Simplified Chinese, Russian, French, and more.
- Improved UX - Better interactions for editing diagram titles and smoother SQL export.
What’s Next?
- More sharing and collaboration enhancements.
- Expanded templates and language support.
- New deployment options and compatibility for more databases.
We’re building ChartDB hand-in-hand with this community and contributors. Your feedback drives our progress, and we’d love to hear more! Thank you to everybody who contributed!
-
Is it possible to map ports when using
network_mode
?Hello everybody! I have the following issue: I have two countainers, let's call them C1 and C2, and they both expose the same port, let's say 1234. I want to route both of them through a gluetun container. to do this, I added
yaml network_mode: container:gluetun
at each container. But they both expose the same port, so there's a conflict. Without routing them though gluetun I can just ```yaml ports:
- 1235:1234 ```
but using network_mode this cannot be done. What can I do? The only thing that comes to my mind is to use two gluetun containers, but I'd rather use a single one
thanks in advance!