vcpkg is a package manager developed by Microsoft. It's similar to Conan but can be easily integrated with Visual Studio after installation. It also offers very simple integration with CMake, making it easy to manage C++ libraries. Also it is more simple than Conan.
pariv_0352
@pariv_0352
Best posts made by pariv_0352
Latest posts made by pariv_0352
-
RE: proget vcpkg proxy
-
proget vcpkg proxy
Hello, is there are plans to create vcpkg packages feed support?
-
RE: [ProGet] Invalid URI when accessing feed
I use
Version 2023.9
. And yes, I saw that thread, but looks like it is a bit different. -
[ProGet] Invalid URI when accessing feed
I run proget behind reverse-proxy. And that proxy sits on non-standard port.
And all works fine, but when I'm trying to access feed through browser it fails with Server Error 500:Invalid URI: The hostname could not be parsed
.If I run proget on non-standard port without reverse-proxy feed access works.
Looks like when proxy sets headerX-Forwarded-Host
to something with explicit port, it fails.
e.g.www.testdomain.com:82
.I found out that
X-Forwarded-Host
header is not very well defined in the case of ports. But I think proget shouldn't throw exceptions in this scenario and show feed page.There is a workaround to set
Web.BaseUrl
, but its not suitable for me, because port may change over time. And I dont want to changeWeb.BaseUrl
every time it changes. -
Proget 2022.5: Can't download package with "invalid version"
Hello, I'm trying to install/download/pull to proget package
HarfBuzzSharp.NativeAssets.Linux 2.8.2.1-preview.79
, but it fails with errorInvalid package version was specified.
-
RE: Can't pull docker image from remote connector
For test purposes I created clean install of proget to other pc using docker.
Created one feedproxy
with connector to docker hub with urlhttps://registry.hub.docker.com
Tried to search for
mongo
in web interface - no results
Then I tried to rundocker pull {proget_url}/proxy/library/mongo:5.0
docker response isError response from daemon: manifest for {proget_url}/proxy/library/mongo:5.0 not found: manifest unknown: manifest unknown
docker container logs:
proget | info: Microsoft.AspNetCore.Hosting.Diagnostics[1] proget | Request starting HTTP/1.1 GET http://{proget_url}/v2/_auth?scope=repository:proxy/mongo:pull&service={proget_url} - - proget | info: Microsoft.AspNetCore.Hosting.Diagnostics[2] proget | Request finished HTTP/1.1 GET http://{proget_url}/v2/_auth?scope=repository:proxy/mongo:pull&service={proget_url} - - - 200 21 application/json 0.4792ms proget | info: Microsoft.AspNetCore.Hosting.Diagnostics[1] proget | Request starting HTTP/1.1 HEAD http://{proget_url}/v2/proxy/mongo/manifests/5.0 - - proget | Running Drop Path Monitor... proget | Running Drop Path Monitor... proget | Getting list of feeds with a drop path... proget | Getting list of feeds with a drop path... proget | No feeds with a drop path. proget | No feeds with a drop path. proget | Drop Path Monitor completed. proget | Drop Path Monitor completed. proget | Running Execution Dispatcher... proget | Running Execution Dispatcher... proget | Checking for executions to dispatch... proget | Checking for executions to dispatch... proget | Execution Dispatcher completed. proget | Execution Dispatcher completed. proget | info: Microsoft.AspNetCore.Hosting.Diagnostics[2] proget | Request finished HTTP/1.1 HEAD http://{proget_url}/v2/proxy/mongo/manifests/5.0 - - - 404 81 application/json 8167.3262ms proget | info: Microsoft.AspNetCore.Hosting.Diagnostics[1] proget | Request starting HTTP/1.1 GET http://{proget_url}/v2/proxy/mongo/manifests/5.0 - - proget | info: Microsoft.AspNetCore.Hosting.Diagnostics[2] proget | Request finished HTTP/1.1 GET http://{proget_url}/v2/proxy/mongo/manifests/5.0 - - - 404 81 application/json 1993.6862ms
After that request I can search for
mongo
in web interface and there will be result with that name. And I can retrieve all remote tags for that image. But that's all I can do with it.I thought that may be something wrong with our network, but this clean install I created on different network and provider.
-
RE: Can't pull docker image from remote connector
- I use 2022.1 version of proget.
- I noticed it just before upgrading proget to a new version, because I use proget to retrieve new image versions of proget )
But I was hoping that after upgrade all will work like always, so I got proget image direct from inedo repository - Docker Hub connector URL is
https://registry.hub.docker.com
- No it still fails with
library
and without with same response.
I have multiple other connectors to other public registries, and all of them stopped to work like this.
-
Can't pull docker image from remote connector
I have a feed with remote connector to docker hub. It was working ok for a long time. But recently I discovered that I can't pull new published images from docker hub through connector.
If I delete cached images, and execute, for example,docker pull our_proget_url/feed_name/mongo:5.0
then answer will beError response from daemon: manifest for our_proget_url/feed_name/mongo:5.0 not found: manifest unknown: manifest unknown
.
I even can search for that image in proget web interface and load and see all remote tags, but can't pull it. -
RE: Proget 6.0.4: can't remove docker image blob via API
Thank you, @rhessinger, for clarification.
Yes, I use common blob storage, and all that makes sense now.
-
RE: Proget 6.0.4: can't remove docker image blob via API
Hi @atripp.
Looks like I misundestood logic of "FeedCleanup" job. Every time I run that job, it always says that
Found 0 unreferenced blobs.
and does nothing.
But "DockerGarbageCollection" job (which I didn't notice before you said about it) really cleaned storage from unused blobs.What for FeedCleanup job then? I checked logs, it never found anything unreferenced.