Like suppose for a second that . . . Idk . . . a product team wants our ci workflows to start using Artifactory. Okay great, I don't know Artifactory integration but I'm going to tell them "Sure, I'll get right on that.". - Source: Reddit / about 1 month ago
If these "assets" have an independent release schedule I would treat them separately (especially if they are externally provided). If they are not built from source then treat them as artefacts, they don't belong in git. You can store the in an artefact repository (like Artifactory of Nexus) or (as u/nekokattt points out) in something like S3. - Source: Reddit / about 2 months ago
And all of those have packages that could technically disappear, or you could have network issues and so on (when I build my container images, I sometimes even have apt fail, even though very rarely). I think a safe bet is to run your own package proxy, like Sonatype Nexus: https://www.sonatype.com/products/nexus-repository (there's also JFrog Artifactory in this space, probably others too:... - Source: Hacker News / about 2 months ago
Artifactory will do what you need, as an APT cache and as container registry as well, however im not sure how "Free" this is for your case. - Source: Reddit / 3 months ago
Tools like Artifactory from jfrog provide a more formalized mechanism to add to your company's IT environment. - Source: Reddit / 5 months ago
Yes. Many companies will set up, essentially, a proxy to public package repositories. A popular one is Artifactory. - Source: Reddit / 7 months ago
Next, there’s Artifactory by JFrog. There’s a free version and a paid version of Artifactory depending on what you want to use. Other benefits of Artifactory include XRay, which is a way to secure container images by scanning them using CVSS scoring and the National Vulnerability Database (NVD). - Source: dev.to / 8 months ago
Above, is a demonstration on how to build your own private dependency management system for Python using git and GitHub actions. Is this the best solution for private dependency management? Probably not, if you are in the position to pick technologies and services or are starting a greenfield project, you will be able to pick something that works out of the box (examples include: Artifactory, Nexus, AWS... - Source: dev.to / 9 months ago
Look into artifactory. It’s a tool that lets your company control which versions of packages you can use. If you want to keep an older version of a library, or fork/overwrite original functionality, you can do that. - Source: Reddit / 11 months ago
Publishing to Pypi or Artifactory by creating a new release on GitHub. - Source: Reddit / 11 months ago
We use JFrog Artifactory, because that's what is used for package management for other languages in our company. - Source: Reddit / about 1 year ago
A DevOps Engineer will also need to make numerous decisions on whether to buy or build certain parts of the DevOps process. For example, does your team roll its own artifact storage features? Or does it leverage a tool like Artifactory? DevOps Engineers need to remain up to speed on the tools marketplace so they can make these critical buy vs. Build decisions. - Source: dev.to / about 1 year ago
If you work in a large company, for security reasons you may already be required to use in-house mirrors of libraries or container images. There are commercial products for doing this, e.g. https://jfrog.com/artifactory/ All the command line package management tools then need to be configured to point at the custom in-house package mirror, rather than connecting to the default public package server over the internet. - Source: Hacker News / over 1 year ago
Projects like Linux distributions create source packages that they can retain and control so that they can build without relying on third parties. Systems like Artifactory will cache dependencies for you - generally your build system will let you set up Artifactory as a proxy and Artifactory will make sure your dependencies don't disappear at some point in the future. - Source: Reddit / over 1 year ago
Artfactory: https://jfrog.com/artifactory/. - Source: Reddit / almost 2 years ago
Artifactory is a specific product: https://jfrog.com/artifactory/ . It can do many things, but primarily stores files. A company I used to work for used it as an internal npm registry and nuget feed for packages we created but did not share outside the company. - Source: Reddit / almost 2 years ago
So, you can publish from CI like Jenkins/Teamcity/etc, then for it, you need to have only one account. Or if you work in a large company the best way is to have your own Nexus-like server, on my previous work we used Artifactory (https://jfrog.com/artifactory/) to save/and manage pom/npm/rpm/etc sources. - Source: Reddit / almost 2 years ago
Do you know an article comparing Artifactory to other products?
Suggest a link to a post with product alternatives.