-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

docker


> Manage Docker containers and images.

> Some subcommands such as `docker run` have their own usage documentation.

More information.


List all docker containers (running and stopped):

docker ps --all

Start a container from an image, with a custom name:

docker run --name {container_name} {image}

Start or stop an existing container:

docker {start|stop} {container_name}

Pull an image from a docker registry:

docker pull {image}

Display the list of already downloaded images:

docker images

Open a shell inside a running container:

docker exec -it {container_name} {sh}

Remove a stopped container:

docker rm {container_name}

Fetch and follow the logs of a container:

docker logs -f {container_name}


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Tue May 21 02:02:35 2024