Skip to content

Commit

Permalink
Add 'preloaded:' prefix to docker stacks
Browse files Browse the repository at this point in the history
  • Loading branch information
dsabeti committed Jun 28, 2023
1 parent 9db02ba commit 9e76aa0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def cached_dependencies
end

def stack
config.get(:diego, :docker_staging_stack)
"preloaded:#{config.get(:diego, :docker_staging_stack)}"
end

def task_environment_variables; end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ module Docker

describe '#stack' do
it 'returns the configured docker_staging_stack' do
expect(builder.stack).to eq('docker-staging-stack')
expect(builder.stack).to eq('preloaded:docker-staging-stack')
end
end

Expand Down

0 comments on commit 9e76aa0

Please sign in to comment.