Hi all,
I'm using Puppet 5 to install Docker like so:
class { 'docker':
version => 5:18.09.9~3-0~ubuntu-bionic,
}
We'd like to control the version of Docker that's running using the Puppet manifest. That is, we want to prevent the unintentional upgrade of Docker when someone logs into the system and runs `apt upgrade`.
The Docker module has an option named
in_upstream_package_source, but from the description, I'm a little unclear if this 'locks' or 'holds' a package version.
Does the Docker module actually 'lock' the Docker package to a specific version?
Thank you,
-= Stefan