Assignment questions (Docker training)

What is the diff between docker pause and docker unpause?

docker pause and unpause allows to temporarily stop and resume the docker container process.

What is the diff between docker stop and docker kill?

docker stop may allow system to gracefully exist before stopping the docker (by signalling) whereas docker kill could forcefully terminate the docker container process. kill can be used in the event of system hang or similar situation.