Docker image #1151
Replies: 4 comments 4 replies
-
@patpatpat123 thank you your message! I moved this over to GH Discussions where we track feature requests. This is something that we will definitely consider. Overall, we are considering adding more distribution formats, including Homebrew. Can you tell me a little bit more about the benefits of a Docker image for your use case? |
Beta Was this translation helpful? Give feedback.
-
Hello @brynary , Thanks for moving this to discussion. The Docker image use case is straightforward. In our company, engineers can choose their laptop and OS, but we all have Docker. So instead of having each and every engineer install its own version, its own configuration, we would like to have a common docker image with a docker compose type configuration. From there, every engineer will have this as a baseline. Is my description ok? |
Beta Was this translation helpful? Give feedback.
-
For CI/CD pipelines this is also useful, saves a lot of time if the image contains all dependencies/plugins already so they don't have to be downloaded on the fly. |
Beta Was this translation helpful? Give feedback.
-
We now have a Docker image available on GitHub Container Registry! https://github.com/qltysh/qlty/pkgs/container/qlty Usage: # Install
docker pull ghcr.io/qltysh/qlty:main # Add --platform linux/x86_64 if needed
# Run, mounting current directory so source code is available
docker run --rm -it -v "$(pwd):/app" ghcr.io/qltysh/qlty:main help This is brand new and should be considered experimental, so please let us know if you see any issues. Our official recommended installation method remains the executable binary installations. If you would like to create an image with linters pre-installed, you should be able to do that with a Dockerfile that builds on this image as |
Beta Was this translation helpful? Give feedback.
-
Hello there,
Thanks for the release of the new tool qlty.
I went to search it on DockerHub and it seems it is still missing.
Could you please help publish a DockerHub version of qlty?
Thank you
Beta Was this translation helpful? Give feedback.
All reactions