Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature #6

Open
wants to merge 47 commits into
base: test_1
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
3f7da46
Merge pull request #1 from DeekshithSN/test_1
DeekshithSN Feb 26, 2019
543dc91
Delete a.txt
DeekshithSN Feb 26, 2019
720cf36
Update Installations_guide.md
DeekshithSN Mar 14, 2019
91262e6
Update Docker_advanced_commands.md
DeekshithSN Mar 27, 2019
a1bed7c
Update Docker_advanced_commands.md
DeekshithSN Mar 27, 2019
ae636da
Update Docker_advanced_commands.md
DeekshithSN Mar 27, 2019
97bc525
Update Docker_advanced_commands.md
DeekshithSN Mar 27, 2019
c1aec9d
Update Installations_guide.md
DeekshithSN Apr 10, 2019
e710910
Update Installations_guide.md
DeekshithSN Apr 10, 2019
0e09b3d
Update aws_helpful_things.md
DeekshithSN Apr 11, 2019
4efec24
Update Installations_guide.md
DeekshithSN Apr 21, 2019
8a7f531
Update README.md
DeekshithSN May 15, 2019
2d45f1b
Create Git_advanced
DeekshithSN Jun 10, 2019
bc166b6
Update and rename Git_advanced to Git_advanced.md
DeekshithSN Jun 10, 2019
1d45c4f
Update Git_advanced.md
DeekshithSN Jun 10, 2019
41ed45d
Update Git_advanced.md
DeekshithSN Jun 12, 2019
b035373
Update Git_advanced.md
DeekshithSN Jun 12, 2019
2c60330
Rename git_references.md to git_basics.md
DeekshithSN Jun 12, 2019
161f76b
Update Installations_guide.md
DeekshithSN Jul 11, 2019
871ec15
Update Installations_guide.md
DeekshithSN Jul 16, 2019
b857874
Update Installations_guide.md
DeekshithSN Jul 17, 2019
dbd7b29
Create Installation_guide_for_mac.md
DeekshithSN Aug 13, 2019
8489988
Update Installation_guide_for_mac.md
DeekshithSN Aug 13, 2019
568ff6d
Update Installation_guide_for_mac.md
DeekshithSN Aug 13, 2019
9140e3b
Create helm_cheatsheet
DeekshithSN Nov 28, 2019
dad0c5f
Update Installations_guide.md
DeekshithSN Nov 28, 2019
45db1b5
Update Installations_guide.md
DeekshithSN Nov 28, 2019
cb8186c
Update Ansible_references.md
DeekshithSN Nov 28, 2019
9266b90
Update Kubernetes_references.md
DeekshithSN Jan 22, 2020
ce167d1
Update Kubernetes_references.md
DeekshithSN Jan 22, 2020
05e60d3
Update Kubernetes_references.md
DeekshithSN Jan 22, 2020
aeed71a
Update Kubernetes_references.md
DeekshithSN Jan 22, 2020
3ceb00f
Update Kubernetes_references.md
DeekshithSN Jan 22, 2020
eae106a
Update Kubernetes_references.md
DeekshithSN Jan 23, 2020
c340289
Rename Installations_guide.md to Installations_guide_centos.md
DeekshithSN Apr 4, 2020
5875ed2
Create installtion_guide_ubuntu.md
DeekshithSN Apr 4, 2020
79bfe9b
Update installtion_guide_ubuntu.md
DeekshithSN Apr 4, 2020
6e61b01
Update installtion_guide_ubuntu.md
DeekshithSN Apr 9, 2020
6cb6de8
Update installtion_guide_ubuntu.md
DeekshithSN Apr 9, 2020
2d2a787
Update installtion_guide_ubuntu.md
DeekshithSN Apr 27, 2020
b8ee12e
Update installtion_guide_ubuntu.md
DeekshithSN Apr 30, 2020
91ad8c2
Update installtion_guide_ubuntu.md
DeekshithSN Apr 30, 2020
252736e
Update git_basics.md
DeekshithSN Jul 21, 2020
06689ed
Merge pull request #5 from DeekshithSN/feature/update-git.md
DeekshithSN Jul 21, 2020
5dd5884
Update installtion_guide_ubuntu.md
DeekshithSN Aug 15, 2020
4a15ae3
Update installtion_guide_ubuntu.md
DeekshithSN Aug 15, 2020
295246c
this is my code
vuluchalasarathbabu Dec 11, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Docker_advanced_commands.md
DeekshithSN authored Mar 27, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit ae636dac73ce0632d721983ac5a0ab4017b90672
10 changes: 6 additions & 4 deletions Docker_advanced_commands.md
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ Assume you have requirment that need to save your docker image as .tar file belo
- docker save -o fedora-all.tar fedora

## Docker load
if you want load .tar file as
if you want load .tar file as docker image
- docker load -i file_name.tar

## copy the files to running container
@@ -44,7 +44,9 @@ copying the file to\from the running container
run echo "$a"
by using above command we will be able to send arguments as launch arguments

- docker build --compress .
- docker build --compress . <br />
Assume your build context is in GB , if you want to compress and send to docker demon then we need to use above command.

- docker

--force-rm --> Always remove intermediate containers <br />
--quiet , -q --> Suppress the build output and print image ID on success <br />
--rm true --> Remove intermediate containers after a successful build <br />