Posts

Showing posts from May, 2026

From what I found, the strongest candidate is a Docker image that runs UMLetino directly.

 There are a few examples. From what I found, the strongest candidate is a Docker image that runs UMLetino directly. Main candidate: manslaughter/umletino Docker Hub has an image called manslaughter/umletino . Its description is “Docker image umletino (web application umlet).” It has not been updated for more than eight years, but Docker Hub shows 10K+ pulls. The startup command is listed there as well. docker run --rm -p 8080 :80 manslaughter/umletino Then open this in your local browser: http://localhost:8080 GitHub repository The corresponding GitHub repository is manslaughter03/docker-umletino . The README describes it as “Deploy umletino behind nginx,” and it includes both the Docker Hub run method and a local build method. For a local build, the README gives this flow: git clone https://github.com/manslaughter03/docker-umletino cd docker-umletino ./build.sh ./run.sh To change the port, for example: ./run.sh 9000 Then open: http://localhost:9000 What the set...