• 0 Posts
  • 119 Comments
Joined 9 months ago
cake
Cake day: February 15th, 2025

help-circle



  • Dokploy has a web ui with a list of services where you click install and it installs them for you. You can set it up to do the exact same job as OMV but also way less or way more, depending on what you want and need. (by just clicking install on the existing templates, or by entering a custom docker compose if you want to run a nieche service)

    So I’d argue dokploy is a perfect substitution (or more like superset) for OMV, but OMV could never substitude dokploy.



  • HelloRoot@lemy.loltoSelfhosted@lemmy.worldMy Dream of a Home Router / Server
    link
    fedilink
    English
    arrow-up
    8
    arrow-down
    1
    ·
    edit-2
    4 days ago

    The closest to your dream is probably https://hexos.com/

    It is closed source, but build on top of open source…

    They (for now) have a one time purchase license, no subscription.

    It has buddy backups. Can run on any normal x86 pc / server (you have to bring your own and install hexos to it). And has a nice and simple GUI for deploying services easily.

    I never personally used it. I just have it on my radar. For me, the not so easy but fully free (cost) and open source way works reasonably well. I run my homelab with dokploy.





  • HelloRoot@lemy.loltoSelfhosted@lemmy.worldSelf-Host Weekly (24 October 2025)
    link
    fedilink
    English
    arrow-up
    17
    arrow-down
    1
    ·
    edit-2
    16 days ago

    FUTO (popularly associated with Immich and Louis Rossman) received some backlash for subverting third-party donor guidelines in the conducting of its grant program

    selfh.st should recieve some backlash for subverting the reason for the FUTO backlash in this summary.

    The guidelines fuckery is just the decor. The main part of the whole cake is: FUTO platforms a guy that calls himself a fascist and talks racist gibberish.




  • HelloRoot@lemy.loltoSelfhosted@lemmy.worldAWS is having a bad day
    link
    fedilink
    English
    arrow-up
    3
    ·
    edit-2
    20 days ago

    For your personal use, you don’t need an enterprise setting. It’s just a simple compose file that you run.

    You can host a registry in pull through mode, so you still have all the images you use locally, but if it’s not in your registry yet, it pulls it from docker hub or whatever.

    The only pain point is that a single registry can’t do both. So if you want to push your own docker images AND have a “cache” of stuff from docker hub, you need to run two registries in two different modes. And then juggle the url’s.


  • HelloRoot@lemy.loltoSelfhosted@lemmy.worldAWS is having a bad day
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    20 days ago

    I have just this (which ironically won’t work now cause docker hub is down)

    services:
      registry:
        restart: always
        image: registry:2
        ports:
          - 5000:5000
        dns:
          - 9.9.9.9
          - 1.1.1.1
        volumes:
          - ../files/auth/registry.password:/auth/registry.password
          - registry-data:/var/lib/registry
        environment:
          REGISTRY_STORAGE_DELETE_ENABLED: true
          REGISTRY_HEALTH_STORAGEDRIVER_ENABLED: false
          REGISTRY_HTTP_SECRET: ${REGISTRY_HTTP_SECRET}
          REGISTRY_AUTH: htpasswd
          REGISTRY_AUTH_HTPASSWD_REALM: Registry Realm
          REGISTRY_AUTH_HTPASSWD_PATH: /auth/registry.password
          # REGISTRY_PROXY_REMOTEURL: "https://registry-1.docker.io/"
    
    volumes:
      registry-data:
    

    I don’t even remember how and when I set it up. I think it might be this: https://github.com/distribution/distribution/releases/tag/v2.0.0

    Recently somebody has created a frontend, which I bookmarked but didn’t bother to set up: https://github.com/Joxit/docker-registry-ui