Skip to content

Commit

Permalink
add ContainerDocker and ContainerSwarm
Browse files Browse the repository at this point in the history
both are plain aliases for Container, which is an alias for Docker
(today), as that's where all the code lives
  • Loading branch information
evgeni committed Sep 20, 2024
1 parent e67cf9b commit 78f9867
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/beaker/hypervisor/container_docker.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# frozen_string_literal: true

require 'beaker/hypervisor/container'

module Beaker
class ContainerDocker < Beaker::Container
end
end
8 changes: 8 additions & 0 deletions lib/beaker/hypervisor/container_swarm.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# frozen_string_literal: true

require 'beaker/hypervisor/container'

module Beaker
class ContainerSwarm < Beaker::Container
end
end

0 comments on commit 78f9867

Please sign in to comment.