btholt/complete-intro-to-containers-v2

jturpin/hollywood image is deprecated and no longer functional

Closed this issue · 0 comments

Docker
Docker CLI

pull / push
Change this

# this just downloads and caches the image, it doesn't do anything else with it
docker pull jturpin/hollywood

# notice it's already loaded and cached here; it doesn't redownload it
docker run -it jturpin/hollywood hollywood

to

# this just downloads and caches the image, it doesn't do anything else with it
docker pull bcbcarl/hollywood

# notice it's already loaded and cached here; it doesn't redownload it
docker run -it bcbcarl/hollywood

pull / push
change this

That will pull the hollywood container from the user jturpin's user account.

to

That will pull the hollywood container from the user bcbcarl's user account.

pause / unpause
change this

docker run -dit --name hw --rm jturpin/hollywood hollywood
docker ps # see container running
docker pause hw
docker ps # see container paused
docker unpause hw
docker ps # see container running again
docker kill hw # see container is gone

to

docker run -dit --name hw --rm bcbcarl/hollywood
docker ps # see container running
docker pause hw
docker ps # see container paused
docker unpause hw
docker ps # see container running again
docker kill hw # see container is gone

exec
change this

docker run -dit --name hw --rm jturpin/hollywood hollywood

# see it output all the running processes of the container
docker exec hw ps aux

to

docker run -dit --name hw --rm bcbcarl/hollywood

# see it output all the running processes of the container
docker exec hw ps aux

You might also want to note in the documentation that we use the image bcbcarl/hollywood instead of the one used in the video, jturpin/hollywood, because it was deprecated.