[GH-ISSUE #981] Who is using the current docker image? #528

Open
opened 2026-02-25 21:35:16 +03:00 by kerem · 8 comments
Owner

Originally created by @jonocodes on GitHub (Apr 28, 2024).
Original GitHub issue: https://github.com/cypht-org/cypht/issues/981

Originally assigned to: @IrAlfred on GitHub.

💬 Question

Dockerhub reports 100k+ pulls from here:
https://hub.docker.com/r/sailfrog/cypht-docker

Thats a lot of pulls. But it looks like there was only one push, 5 months ago.

Does anyone have an idea who all those pulls are from? It would be good to know as it could help direct future image releases.

In the past I had a personal docker image on dockerhub that I made public and got a similar amout of pulls even though I was the only user. Turned out it was part of my continuous deploy system that was regularly checking dockerhub for image updates. The check ran 'docker pull', but even if the local copy never changed it was added to the pull count. Is there anything known about in the cypht infrastructure (or perhaps the related tikiwiki project) that may be doing this?

Originally created by @jonocodes on GitHub (Apr 28, 2024). Original GitHub issue: https://github.com/cypht-org/cypht/issues/981 Originally assigned to: @IrAlfred on GitHub. ## 💬 Question Dockerhub reports 100k+ pulls from here: https://hub.docker.com/r/sailfrog/cypht-docker Thats a lot of pulls. But it looks like there was only one push, 5 months ago. Does anyone have an idea who all those pulls are from? It would be good to know as it could help direct future image releases. In the past I had a personal docker image on dockerhub that I made public and got a similar amout of pulls even though I was the only user. Turned out it was part of my continuous deploy system that was regularly checking dockerhub for image updates. The check ran 'docker pull', but even if the local copy never changed it was added to the pull count. Is there anything known about in the cypht infrastructure (or perhaps the related tikiwiki project) that may be doing this?
Author
Owner

@marclaporte commented on GitHub (Apr 28, 2024):

Very good question!

I don't know where it's coming from but I am reasonably sure it's not coming from Tiki because

  1. Tiki gets Cypht from https://packagist.org/packages/jason-munro/cypht
  2. Tiki Docker has the same problem as described here: https://github.com/cypht-org/cypht-docker/issues/31
<!-- gh-comment-id:2081640566 --> @marclaporte commented on GitHub (Apr 28, 2024): Very good question! I don't know where it's coming from but I am reasonably sure it's not coming from Tiki because 1. Tiki gets Cypht from https://packagist.org/packages/jason-munro/cypht 2. Tiki Docker has the same problem as described here: https://github.com/cypht-org/cypht-docker/issues/31
Author
Owner

@jonocodes commented on GitHub (Apr 29, 2024):

If there are no way to get insights on the dockerhub account about specific usage, perhaps there is a way through the packageist account?

I mention this because if you see here, Cypht has the most downloads, while roundcube has a lot more start. Which also is an indication something unusual is going on.

image

<!-- gh-comment-id:2082979457 --> @jonocodes commented on GitHub (Apr 29, 2024): If there are no way to get insights on the dockerhub account about specific usage, perhaps there is a way through the packageist account? I mention this because if you see here, Cypht has the most downloads, while roundcube has a lot more start. Which also is an indication something unusual is going on. ![image](https://github.com/cypht-org/cypht/assets/1310468/cbc5830e-b785-4da8-8582-394edee1d45b)
Author
Owner

@marclaporte commented on GitHub (Apr 29, 2024):

In 2017, I suggested that Roundcube be made available on Packagist.org. At the time, it was not a priority for the project leaders:
https://github.com/roundcube/roundcubemail/issues/5938

I made the same suggestion for Cypht in 2019:
https://github.com/cypht-org/cypht/issues/311#issuecomment-457885167
It was implemented and Cypht got over 80 000 downloads :-)

It looks like Roundcube very recently changed their mind, which is why there are only 103 downloads. Given how popular Roundcube is, I expect that figure will grow quickly.

FYI: https://doc.tiki.org/Roundcube-vs-Cypht

<!-- gh-comment-id:2083603721 --> @marclaporte commented on GitHub (Apr 29, 2024): In 2017, I suggested that Roundcube be made available on Packagist.org. At the time, it was not a priority for the project leaders: https://github.com/roundcube/roundcubemail/issues/5938 I made the same suggestion for Cypht in 2019: https://github.com/cypht-org/cypht/issues/311#issuecomment-457885167 It was implemented and Cypht got over 80 000 downloads :-) It looks like Roundcube very recently changed their mind, which is why there are only 103 downloads. Given how popular Roundcube is, I expect that figure will grow quickly. FYI: https://doc.tiki.org/Roundcube-vs-Cypht
Author
Owner

@jonocodes commented on GitHub (May 22, 2024):

In my docker work in cypht I have found a handful of issues - and I am not doing through testing. Some things that done work in the current docker image that I have come upon:

  • sending attachments
  • sqlite integration
  • redis integration
  • memcached integration

How have these not been actively reported on in the issue tracker? With an average around 500 pulls a day, I would presume more activity if these were from active deployments. So I have several more ideas how this number is what it is:

  1. We dont know the historical pull count, so its possible all the pulls happened in one day with some runaway process on a desktop, perhaps when setting up the image the first time.

  2. The image is used by some existing yml file, distributed with a widely used project. Lets say something like stalwart or even tikiwiki has a published docker compose file that also includes cypht. Any number of users could be running that (even if they are not actively using cypht), or some CI runs it a bunch of times a day which causes pulls. Searching github didnt find much, but thats the only place I looked: https://github.com/search?q=%22sailfrog%2Fcypht-docker%22+language%3Ayaml&type=code

  3. There is some project or third party site that watches projects. It may be pinging a lot of repos, inflating many numbers. Perhaps an aggregator or something like this: https://directory.fsf.org

With no telemetry, we can make guesses all day, so who knows.

I only bring this up because it is good to know how many users will be affected when a breaking update goes out. And it helps inform how drastic development changes can be.

<!-- gh-comment-id:2125790135 --> @jonocodes commented on GitHub (May 22, 2024): In my docker work in cypht I have found a handful of issues - and I am not doing through testing. Some things that done work in the current docker image that I have come upon: - sending attachments - sqlite integration - redis integration - memcached integration How have these not been actively reported on in the issue tracker? With an average around 500 pulls a day, I would presume more activity if these were from active deployments. So I have several more ideas how this number is what it is: 1. We dont know the historical pull count, so its possible all the pulls happened in one day with some runaway process on a desktop, perhaps when setting up the image the first time. 2. The image is used by some existing yml file, distributed with a widely used project. Lets say something like stalwart or even tikiwiki has a published docker compose file that also includes cypht. Any number of users could be running that (even if they are not actively using cypht), or some CI runs it a bunch of times a day which causes pulls. Searching github didnt find much, but thats the only place I looked: https://github.com/search?q=%22sailfrog%2Fcypht-docker%22+language%3Ayaml&type=code 3. There is some project or third party site that watches projects. It may be pinging a lot of repos, inflating many numbers. Perhaps an aggregator or something like this: https://directory.fsf.org With no telemetry, we can make guesses all day, so who knows. I only bring this up because it is good to know how many users will be affected when a breaking update goes out. And it helps inform how drastic development changes can be.
Author
Owner

@marclaporte commented on GitHub (Sep 28, 2024):

I understand what you are saying. Cypht 3.0 is in the works, and this is a great time for breaking changes. And Cypht 2.x will become LTS so we give folks plenty of time for the transition.

So what do you want to break? Oups, I mean improve :-)

<!-- gh-comment-id:2380390295 --> @marclaporte commented on GitHub (Sep 28, 2024): I understand what you are saying. Cypht 3.0 is in the works, and this is a great time for breaking changes. And Cypht 2.x will become LTS so we give folks plenty of time for the transition. So what do you want to break? Oups, I mean improve :-)
Author
Owner

@IrAlfred commented on GitHub (Aug 23, 2025):

Hello @jonocodes and @marclaporte,

I pushed Cypht 2.4.2 to my Docker Hub account https://hub.docker.com/r/iralfred/cypht/tags for a test purpose, and after only one day there were 188 pulls. As it was for a test purpose, I deleted the image from my PC yesterday, and today this number didn't increase. Is it because the image is now available on Cypht's official repo ? Was it coming from my PC ? Who knows! Let's keep investigating this.

<!-- gh-comment-id:3216562995 --> @IrAlfred commented on GitHub (Aug 23, 2025): Hello @jonocodes and @marclaporte, I pushed Cypht 2.4.2 to my Docker Hub account [https://hub.docker.com/r/iralfred/cypht/tags](https://hub.docker.com/r/iralfred/cypht/tags) for a test purpose, and after only one day there were 188 pulls. As it was for a test purpose, I deleted the image from my PC yesterday, and today this number didn't increase. Is it because the image is now available on Cypht's official repo ? Was it coming from my PC ? Who knows! Let's keep investigating this.
Author
Owner

@marclaporte commented on GitHub (Aug 23, 2025):

I don't know.

<!-- gh-comment-id:3216976949 --> @marclaporte commented on GitHub (Aug 23, 2025): I don't know.
Author
Owner

@marclaporte commented on GitHub (Sep 1, 2025):

@IrAlfred Please review issues indicated above by @jonocodes

Please see with @rodriguezny for Docker questions.

If there are some things to discuss as a community, please bring them up at a monthly Cypht community meeting: https://github.com/cypht-org/cypht/wiki/Monthly-Community-Meetings

<!-- gh-comment-id:3241836841 --> @marclaporte commented on GitHub (Sep 1, 2025): @IrAlfred Please review issues indicated above by @jonocodes Please see with @rodriguezny for Docker questions. If there are some things to discuss as a community, please bring them up at a monthly Cypht community meeting: https://github.com/cypht-org/cypht/wiki/Monthly-Community-Meetings
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/cypht#528
No description provided.