We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have my init.pp file include 2 classes:
docker_setup.pp has the following code:
class docker_setup { class { 'docker': docker_users => ['roy'], extra_parameters => ['--data-root=/proj/docker'], } }
docker_container.pp has the following code:
docker::run { 'splunk': #ensure => absent, image => 'splunk/splunk:8.2.5', ports => ['127.0.0.1:8000:8000','127.0.0.1:8089:8089'], restart => 'no', require => Class['docker'], }
when running puppet agent -t I get the following error:
Error: Failed to apply catalog: No such file or directory - docker
I would expect docker to be installed and then start the container
Please note that there is docker installed on the agent.
The text was updated successfully, but these errors were encountered:
Seems to be a duplicate of #886.
Sorry, something went wrong.
No branches or pull requests
Describe the Bug
I have my init.pp file include 2 classes:
docker_setup.pp has the following code:
docker_container.pp has the following code:
when running puppet agent -t I get the following error:
Expected Behavior
I would expect docker to be installed and then start the container
Environment
CentOS Linux release 7.7.1908 (Core)
CentOS Stream release 9
Additional Context
Please note that there is docker installed on the agent.
The text was updated successfully, but these errors were encountered: