In docker run --name transport-container -d alpine tail -f /dev/null, what do --name and -d control?
docker run --name transport-container -d alpine tail -f /dev/null
--name
-d
They publish a port and mount a host volume.
They select the Alpine image and the tail command.
tail
They assign the container name and run it detached from the terminal.
They remove the container and stop it immediately.