adhawkins wrote: > Yeah, that was my determination too. Just wondering why he is 'behind'. > > I'm ideally looking for a container that tracks the latest 'stable' > release, being built (ideally automatically) whenever the nightlies > change. > > All I want to have to do is docker pull the latest one and be done with > it. > > There didn't seem to be anything that fit the bill when I started this > thread, hence my wondering whether to just roll my own. > > Andy
For me Doliana's fits the bill - it builds a new image weekly, but it just needs to be tweaked to pick up 7.9.3 and 8.0 nightlies. For example the automated Azure pipeline build file https://github.com/DOliana/docker-image-logitech-media-server/blob/master/azure-pipelines.yml just needs line 34 to be changed to 7.9.3 (or 8.0) Code: -------------------- lmsVersion: '7.9.2' -------------------- as that is what is passed to the docker build argument line 88, 100, 112 for the 3 images currently built. Code: -------------------- --build-arg VERSION=$(lmsVersion) -------------------- But ... it ain't my code/image, so I can't judge and there may be reasons Doliana is staying with 7.9.2 (eg. it ain't broke ... don't fix it) There is also sections in the build file for building 7.9.0 images (lines 173 onwards) ------------------------------------------------------------------------ kidhazy's Profile: http://forums.slimdevices.com/member.php?userid=42259 View this thread: http://forums.slimdevices.com/showthread.php?t=111828 _______________________________________________ unix mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/unix
