Skip to content

Commit

Permalink
Use bigger partition for docker images and container storage
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianSW committed Feb 21, 2019
1 parent 987d4b7 commit 9250271
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions modules/role/manifests/concourse.pp
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
# Manages the dockerized Concourse
class role::concourse {
include 'docker'
class {'docker::compose':
file { '/data/docker':
ensure => directory,
owner => 'root',
group => 'root',
}

class { 'docker':
extra_parameters => ['-g /data/docker']
}

class { 'docker::compose':
ensure => present,
version => '1.23.2',
}
Expand Down

0 comments on commit 9250271

Please sign in to comment.