For those who’ve never heard of us:

Libre Closet is a free, open-source, self-hosted wardrobe organizer - with client side garment image background removal. Catalog your clothes, upload photos, build outfits, and access everything from your phone as an offline-ready PWA - all on your own server.

We at Lazztech LLC have crafted and engineered this project with care and intention to be as easy to self-host as possible. It defaults to local SQLite storage and local file storage. It has optional auth/multi user support.

docker run -p 3000:3000 -v wardrobe-data:/data ghcr.io/lazztech/libre-closet:latest

Please feel free to ask any questions you may have, whether about the development choices we’ve made, or about the product itself. We’re excited to continue to build a community around this project.

——

For those already familiar, I’d like to share some progress updates.

First, I’d like to introduce Leolazz, who’s joined the project as our 3rd core maintainer, alongside ShoshannaTM, and myself!

Second, I’d like to share gratitude for the warm and supportive reception Libre Closet has continued to receive. It sincerely makes my day when we get a new feature request or comment about how users are enjoying it. Since the first post, we’ve gotten 234 Github stars, over 10.8k docker image pulls, multiple community PRs contributed, and many helpful issues filed.

Latest News - Significant Performance Improvements:

We’ve refactored the server resulting in nearly a 2x throughput increase, almost half the latency, and the lighthouse speed score has gone from 68/100 to 99/100.

Metric Before After Change
Requests/sec 1,188.10 2,091.64 +76.05%
Latency avg 7.90 ms 4.24 ms –46.33%
Latency p50 7.00 ms 4.00 ms –42.86%
Latency p99 18.00 ms 11.00 ms –38.89%
Throughput 26.39 MB/sec 44.30 MB/sec +67.87%

Latest Releases:

  • v0.3.2 - June 09, 2026: Added background removal toggle for garment image uploads.
  • v0.3.1 - May 26, 2026: Refactored server resulting in nearly a 2x throughput increase and almost half the latency.
  • v0.3.0 - May 21, 2026: Garment image background touch up tool
  • v0.2.5 - May 1, 2026: Added option to disable register functionality
  • v0.2.4 - April 28, 2026: Fix garment photo upload cropping

For full details refer to the CHANGELOG.

We can’t wait for everyone to try it out, and we hope you enjoy v0.3.2 of Libre Closet!

Public: https://librecloset.lazz.tech/

GitHub: https://github.com/lazztech/Libre-Closet

@

  • greeneyestyle@lemmy.worldOP
    link
    fedilink
    English
    arrow-up
    2
    ·
    3 days ago

    I can help with that. But first a little fyi on containers to get you up to speed.

    A docker container is like a mini computer, but where its life depends on one single computer program being alive and running inside of it. So if the container is running based on the command from the readme, then you should be able to access the web ui via http://localhost:3000/

    As the program that our docker container bases its life on is the http server of the Libre Closet project, which listens for http requests on port 3000.

    • Redvenom@retrolemmy.com
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 days ago

      I was able to login, thank you, one more question, is there a way to create 2 wardrobes or accounts while self hosting?

      • greeneyestyle@lemmy.worldOP
        link
        fedilink
        English
        arrow-up
        2
        ·
        2 days ago

        Good, glad to hear it helped!

        Yes, there’s auth/multi user support. You just need to enable it with the ENABLE_AUTH=true environment variable. It’s documented in the readme configuration section and also in the docker compose example in the readme.