DEV Community

Cover image for #011 building our Image Part 2
Omar
Omar

Posted on

#011 building our Image Part 2

Introduction

this is part 11(ctd of part #10:1) from the journey it's a long journey(360 day) so go please check previous parts , and if you need to walk in the journey with me please make sure to follow because I may post more than once in 1 Day but surely I will post daily at least one 😍.

And I will cover lot of tools as we move on.


run

now time to action , we have an image ready to run , without any problems!

docker run app_009_1:1.0
Enter fullscreen mode Exit fullscreen mode

success

and that's it! we have a small and simple application.

remove the tag

now we need to remove the 1.0 tag

docker image rm app_009_1:1.0
Enter fullscreen mode Exit fullscreen mode

this will untagg the image with 1.0 tag
untagged

docker image ls
Enter fullscreen mode Exit fullscreen mode

ls_image

as wee see the image got removed

Top comments (0)