Install podman and create dummy docker-compose.yaml
This commit is contained in:
parent
58def32b14
commit
c435320374
|
@ -10,4 +10,15 @@ class podmanrunner::runner (
|
||||||
uid => '1001',
|
uid => '1001',
|
||||||
managehome => true,
|
managehome => true,
|
||||||
}
|
}
|
||||||
|
package { 'podman':
|
||||||
|
ensure => installed,
|
||||||
|
provider => apt,
|
||||||
|
}
|
||||||
|
file { '/opt/podmanuser/docker-compose.yaml':
|
||||||
|
ensure => file,
|
||||||
|
content => template('podmanrunner/docker-compose.yaml.erb'),
|
||||||
|
owner => 'podmanuser',
|
||||||
|
group => 'podmanuser',
|
||||||
|
mode => '0600',
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue