vagrant/plugins/provisioners/docker/plugin.rb
oss-core-libraries-dashboard[bot] ea57f40b89
Some checks failed
/ sync-acceptance (push) Has been cancelled
Vagrant Ruby Tests / Vagrant unit tests on Ruby 3.1 (push) Has been cancelled
Vagrant Ruby Tests / Vagrant unit tests on Ruby 3.2 (push) Has been cancelled
Vagrant Ruby Tests / Vagrant unit tests on Ruby 3.3 (push) Has been cancelled
Vagrant Ruby Tests / Vagrant unit tests on Ruby 3.4 (push) Has been cancelled
[COMPLIANCE] Update Copyright and License Headers (#13752)
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
2025-12-04 17:07:40 +05:30

71 lines
2 KiB
Ruby

# Copyright IBM Corp. 2010, 2025
# SPDX-License-Identifier: BUSL-1.1
require "vagrant"
module VagrantPlugins
module DockerProvisioner
class Plugin < Vagrant.plugin("2")
name "docker"
description <<-DESC
Provides support for provisioning your virtual machines with
Docker images and containers.
DESC
config(:docker, :provisioner) do
require_relative "config"
Config
end
guest_capability("debian", "docker_install") do
require_relative "cap/debian/docker_install"
Cap::Debian::DockerInstall
end
guest_capability("debian", "docker_start_service") do
require_relative "cap/debian/docker_start_service"
Cap::Debian::DockerStartService
end
guest_capability("fedora", "docker_install") do
require_relative "cap/fedora/docker_install"
Cap::Fedora::DockerInstall
end
guest_capability("centos", "docker_install") do
require_relative "cap/centos/docker_install"
Cap::Centos::DockerInstall
end
guest_capability("centos", "docker_start_service") do
require_relative "cap/centos/docker_start_service"
Cap::Centos::DockerStartService
end
guest_capability("linux", "docker_installed") do
require_relative "cap/linux/docker_installed"
Cap::Linux::DockerInstalled
end
guest_capability("linux", "docker_configure_vagrant_user") do
require_relative "cap/linux/docker_configure_vagrant_user"
Cap::Linux::DockerConfigureVagrantUser
end
guest_capability("linux", "docker_daemon_running") do
require_relative "cap/linux/docker_daemon_running"
Cap::Linux::DockerDaemonRunning
end
guest_capability("windows", "docker_daemon_running") do
require_relative "cap/windows/docker_daemon_running"
Cap::Windows::DockerDaemonRunning
end
provisioner(:docker) do
require_relative "provisioner"
Provisioner
end
end
end
end