Sleeping container

Jo !
Going through labs I noticed that sleeping command require different syntax depending on exercises.
So can you clarify which one should be used ?
command: [“sh”,“-c”,“sleep 4800”]
command: [“/bin/sh”,“-c”,“sleep 4800”]
command: [“sleep”,“4800”]
command: [“sh”] args: [“-c”,“sleep 4800”]
args: [“sh”,“-c”,“sleep 4800”]

Hi @andrzej,

Usually you can use command: ["/bin/sh","-c","sleep 4800"], this tells the container to execute the command as shell and also args can be a parameter to command.