Docker: Difference between revisions

From Han Wiki
Jump to navigation Jump to search
add tag an image
mNo edit summary
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
Copy files to/from container
<syntaxhighlight lang="console">
$ docker cp myfile.txt container_name:/srv/www/folder/
</syntaxhighlight>
List images
List images


<source lang="bash">
<syntaxhighlight lang="bash">
$ docker images
$ docker images
</source>
</syntaxhighlight>


Tag an image
Tag an image
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
$ docker tag 7d9495d03763 maryatdocker/docker-whale:latest
$ docker tag 7d9495d03763 maryatdocker/docker-whale:latest
</syntaxhighlight>
</syntaxhighlight>
Log-in for push/pull operations
<syntaxhighlight lang="bash">
$ docker login --username=username --email=joe@mosh.com
</syntaxhighlight>
Push image
<syntaxhighlight lang="bash">
$ docker push maryatdocker/docker-whale
</syntaxhighlight>
Remove an image
<syntaxhighlight lang="bash">
$ docker rmi -f imageid
</syntaxhighlight>
== Resources ==
* [https://medium.com/@brentrobinson5/containerised-ci-cd-pipelines-with-azure-devops-74064c679f20 Containerised CI/CD pipelines with Azure DevOps | by Brent Robinson | Medium]
*VS Code
**[https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers Dev Containers plugin for VS Code]
**[https://semaphoreci.com/community/tutorials/dockerizing-a-php-application Dockerizing a PHP Application]
**[https://docs.docker.com/get-started/02_our_app/ Containerize an application]
[[Category:Development]]
[[Category:Container]]
[[Category:Docker]]

Latest revision as of 08:49, 31 August 2023

Copy files to/from container

$ docker cp myfile.txt container_name:/srv/www/folder/

List images

$ docker images

Tag an image

$ docker tag 7d9495d03763 maryatdocker/docker-whale:latest

Log-in for push/pull operations

$ docker login --username=username --email=joe@mosh.com

Push image

$ docker push maryatdocker/docker-whale

Remove an image

$ docker rmi -f imageid

Resources