skip to Main Content

Identify FROM line from Docker Image

I have an image from a colleague and the original version of the Dockerfile was lost that was used to create it. I used alpine/dfimage to rebuild everything in the Dockerfile except the first line (FROM). According to Artifactory, the…

VIEW QUESTION

How to get get latest nodejs:14 digest version in Docker file

Is there any command/way to get latest digest(sha256) for amazon/aws-lambda-nodejs:14. Currently, we are manually setting digest version sha256. Like, give below. FROM amazon/aws-lambda-nodejs:14@sha256:621368a9c8cbf474b60ae9092725f6ea7ae4f9b0ac7a9229039e25157bad990b We end up getting vulnerabilities after some time for the Docker image. Please suggest a way/command in…

VIEW QUESTION

Redis cache for news articles

I have a bunch of news articles (~100k at the moment). Every article can be connected with more than one category. So I have two keys article URL and category. I need to store this articles in Redis and need…

VIEW QUESTION

Redis, find by hash, find by field value

I want to create hashes with books info in redis, for instance: HMSET books key "83-7197-669-0" title "Access. DB desing" price 79.0 publisher "Helion" year 2002 HMSET books key "83-7197-786-7" title "Access XP" price 65.0 publisher "Helion" year 2003 Then…

VIEW QUESTION
Back To Top
Search