Anonymous
×
Create a new article
Write your page title here:
We currently have 27 articles on PhenixOps. Type your article name above or click on one of the titles below and start writing!



PhenixOps
27Articles

Docker: Difference between revisions

(Created page with "== Docker == ------ === Installation === <code> apt-get install -y apt-transport-https ca-certificates surl software-properties-common </code> <br> If needed import the dock...")
 
Line 43: Line 43:
</code> <br>
</code> <br>


Run an image <br>
Run an image in a container <br>
<code>
<code>
docke run ''image''
docke run ''image''
</code> <br>
Stop the container <br>
<code>
docker stop web01
</code> <br>
</code> <br>


Line 78: Line 83:
<code>
<code>
curl localhost
curl localhost
</code> <br>
Stop the container <br>
<code>
docker stop web01
</code> <br>
</code> <br>



Revision as of 20:39, 24 April 2020

Docker


Installation

apt-get install -y apt-transport-https ca-certificates surl software-properties-common

If needed import the docker repo
apt-get update

Install Docker
apt-get install docker-ce

Useful commands

Information
docker info

Check Version of client and server
docker version

Search images (usually from hub.docker.com)
docker search image

Get images you want to run
docker pull image

Show the images
docker image

Run an image in a container
docke run image

Stop the container
docker stop web01

Search images
docker search image

Run Hello World (Shows a Hello World message on the commandline)
docker pull hello-world docker run hello-world

Run httpd webserver
docker pull httpd docker run httpd

Run http and expose it to the outside world (-p container:host)
docker run -p 80:80 --name web01 -d httpd

Show running containers
docker ps

Get stuff from the webserver
curl localhost

Remove the container
docker rm web01

Comments