File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ def pull_image
41
41
system ( "podman image exists #{ image_name } " )
42
42
if $?. to_i > 0 # image doesn't exist -- pull image from a remote repository
43
43
puts " No. Pulling image #{ image_name } ..."
44
- system ( "podman pull quay.io/qount25/pgpm-debian12 " )
44
+ system ( "podman pull #{ image_name } " )
45
45
else
46
46
puts " Yes, image #{ image_name } already exists! OK"
47
47
end
@@ -87,9 +87,6 @@ def copy_build_from_container
87
87
def cleanup
88
88
puts "Cleaning up..."
89
89
90
- # Stop and destroy podman container
91
- puts " Stopping podman container: #{ @container_name } "
92
- system ( "podman stop #{ @container_name } " )
93
90
puts " Destroying podman container: #{ @container_name } "
94
91
system ( "podman container rm #{ @container_name } " )
95
92
You can’t perform that action at this time.
0 commit comments