<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>docker Archives - Creatronix</title>
	<atom:link href="https://creatronix.de/tag/docker/feed/" rel="self" type="application/rss+xml" />
	<link>https://creatronix.de/tag/docker/</link>
	<description>My adventures in code &#38; business</description>
	<lastBuildDate>Fri, 01 Nov 2024 17:50:09 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Docker Commands Cheatsheet</title>
		<link>https://creatronix.de/docker-commands-cheatsheet/</link>
		
		<dc:creator><![CDATA[Jörn]]></dc:creator>
		<pubDate>Sat, 10 Jul 2021 07:13:29 +0000</pubDate>
				<category><![CDATA[DevOps & Automation]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[container]]></category>
		<category><![CDATA[docker]]></category>
		<category><![CDATA[image]]></category>
		<guid isPermaLink="false">https://creatronix.de/?p=3548</guid>

					<description><![CDATA[<p>Reminder: A Container is a running instance of an Image Docker CLI commands Command Meaning docker info This command displays system wide information regarding the Docker installation docker pull download an image from dockerhub docker images show list of locally available docker image docker start start container docker stop stop container docker run pulls image,&#8230;</p>
<p>The post <a href="https://creatronix.de/docker-commands-cheatsheet/">Docker Commands Cheatsheet</a> appeared first on <a href="https://creatronix.de">Creatronix</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Reminder: <strong>A Container is a running instance of an Image</strong></p>
<h2 id="docker-cli-commands">Docker CLI commands</h2>
<table>
<thead>
<tr>
<th>Command</th>
<th>Meaning</th>
</tr>
</thead>
<tbody>
<tr>
<td>docker info</td>
<td>This command displays system wide information regarding the Docker installation</td>
</tr>
<tr>
<td>docker pull</td>
<td>download an image from dockerhub</td>
</tr>
<tr>
<td>docker images</td>
<td>show list of locally available docker image</td>
</tr>
<tr>
<td>docker start</td>
<td>start container</td>
</tr>
<tr>
<td>docker stop</td>
<td>stop container</td>
</tr>
<tr>
<td>docker run</td>
<td>pulls image, make a container from image and runs it</td>
</tr>
<tr>
<td>docker run -d</td>
<td>running in detached mode</td>
</tr>
<tr>
<td>docker run -p:</td>
<td>port binding e.g. -p6000:6379</td>
</tr>
<tr>
<td>docker ps</td>
<td>show a list of running containers</td>
</tr>
<tr>
<td>docker ps -a</td>
<td>show a list of running <strong>and stopped</strong> containers</td>
</tr>
<tr>
<td>docker logs</td>
<td>gets the log from the running container</td>
</tr>
<tr>
<td>docker exec -it /bin/bash</td>
<td>interactive terminal</td>
</tr>
<tr>
<td>docker rename</td>
<td>rename a container</td>
</tr>
</tbody>
</table>
<p>The post <a href="https://creatronix.de/docker-commands-cheatsheet/">Docker Commands Cheatsheet</a> appeared first on <a href="https://creatronix.de">Creatronix</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
