I am just starting with docker and I have a silly question. When you list all the containers, you'll see an output like this:
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
4c01db0b339c ubuntu:12.04 bash 17 seconds ago Up 16 seconds 3300-3310/tcp webapp
d7886598dbe2 crosbymichael/redis:latest /redis-server --dir 33 minutes ago Up 33 minutes 6379/tcp redis,webapp/db
I am wondering what does the COMMAND here signifies? Does it mean the last command run by the container or the first one or something else?
I tried the official docker documentation but couldn't find my answer. Any help?