<?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>cli Archives - Creatronix</title>
	<atom:link href="https://creatronix.de/tag/cli/feed/" rel="self" type="application/rss+xml" />
	<link>https://creatronix.de/tag/cli/</link>
	<description>My adventures in code &#38; business</description>
	<lastBuildDate>Fri, 01 Nov 2024 17:53:42 +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>
		<item>
		<title>Generating SHA-1 for Google API</title>
		<link>https://creatronix.de/generating-sha-1-for-google-api/</link>
		
		<dc:creator><![CDATA[Jörn]]></dc:creator>
		<pubDate>Thu, 06 May 2021 12:20:20 +0000</pubDate>
				<category><![CDATA[Android & iOS development]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[google api]]></category>
		<category><![CDATA[sha-1]]></category>
		<category><![CDATA[youtube]]></category>
		<guid isPermaLink="false">https://creatronix.de/?p=3605</guid>

					<description><![CDATA[<p>When you want to interface with any Google API e.g. YouTube from within your Android App, you need to register your app in the developer console. You have to provide a SHA-1 key which can be generated as following: Command line $ chmod u+x gradlew $ ./gradlew signingReport</p>
<p>The post <a href="https://creatronix.de/generating-sha-1-for-google-api/">Generating SHA-1 for Google API</a> appeared first on <a href="https://creatronix.de">Creatronix</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>When you want to interface with any Google API e.g. YouTube from within your Android App, you need to register your app in the developer console.</p>
<p>You have to provide a SHA-1 key which can be generated as following:</p>
<h2>Command line</h2>
<pre>$ chmod u+x gradlew
$ ./gradlew signingReport</pre>
<p>The post <a href="https://creatronix.de/generating-sha-1-for-google-api/">Generating SHA-1 for Google API</a> appeared first on <a href="https://creatronix.de">Creatronix</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
