Skip to content

Commit

Permalink
Use a - as a separator to fix issues with already running detection
Browse files Browse the repository at this point in the history
  • Loading branch information
vb-linetco committed Aug 22, 2024
1 parent 63e09a1 commit 6d6943e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/puppet/provider/docker_compose/ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def get_image(service_name, compose_services)
if compose_services[service_name]['extends']
image = get_image(compose_services[service_name]['extends'], compose_services)
elsif compose_services[service_name]['build']
image = "#{name}_#{service_name}"
image = "#{name}-#{service_name}"
end
end
image
Expand Down

0 comments on commit 6d6943e

Please sign in to comment.