Docker vs docker stack deployment

According to the docs, they are two teams: deploying a docker stack and deploying dockers .

Is this case or some information hidden somewhere?

+6
source share
1 answer

Commands are synonyms; they fall into the same API. Docker is in the first steps of moving from docker $verb commands to docker $noun $verb , so you'll also see commands like docker images from before and docker image ls or even docker ps and now docker container ps .

+7
source

Source: https://habr.com/ru/post/1014681/


All Articles