Muhammad Umair Khan
a259e68ac7
Correction of CPU Shares flag
...
Flag is -c instead of --c
2018-09-25 22:55:47 +05:00
Will Sargent
4a332d911b
Merge pull request #158 from sachingoel/patch-2
...
Fix hyperlink in readme
2018-06-13 21:31:15 -07:00
yawak
8f36d87702
Update README.md
...
Spelling correction update
2018-06-12 23:59:06 +08:00
Sachin Goel
acf133fa2c
Fix hyperlink in readme
2018-05-23 11:00:41 +05:30
Sachin Goel
25f6e196ce
Add some useful links for writing dockerfile
...
Add a example link to write Dockerfile
2018-05-22 15:02:57 +05:30
Will Sargent
cc56e19aba
Merge pull request #141 from bseino/patch-1
...
Checking Docker version
2018-04-30 10:12:55 -07:00
Will Sargent
54cdc41453
Merge pull request #147 from asciian/patch-1
...
Update the instruction of Installation on macOS
2018-04-30 10:12:14 -07:00
Will Sargent
34f7f9cbf6
Merge pull request #153 from abusaidm/patch-1
...
previously only printing the line again
2018-04-30 10:11:45 -07:00
Rich Morin
451b1352be
fixed dangling modifier
2018-04-29 13:29:05 -07:00
abusaidm
d43d1b0223
previously only printing the line again
...
added awk split to split the docker images output and return image id only
2018-01-05 10:47:26 +00:00
seerjk
c8c44868ec
Add tips: Delete all containers command
...
Delete all containers (force!! running or stopped containers)
2017-12-21 14:51:14 +08:00
Will Sargent
7ca7dcedac
Merge pull request #138 from Teqqles/patch-1
...
Update README.md
2017-12-15 10:17:05 -08:00
Will Sargent
9033bc9a37
Merge pull request #139 from zivvers/master
...
fix to get single IPAddress
2017-12-15 10:16:54 -08:00
Will Sargent
7af1544323
Merge pull request #145 from bdwyer2/patch-1
...
deleted broken link
2017-12-15 10:16:26 -08:00
TANIGUCHI Masaya
0099358b28
Update the instruction of Installation on macOS
2017-11-08 21:15:54 +09:00
Anant Paatra
55956865ab
small typo
2017-11-01 04:10:47 +00:00
Brendan Dwyer
4a3d1455a3
deleted broken link
2017-10-10 12:32:04 -07:00
Broundon Seino
bcc568e9bc
Checking Docker version
2017-09-24 14:33:46 -04:00
Ziv Dreyfuss
8e4a7df236
fix to get single IPAddress
2017-08-30 17:29:32 -04:00
David Long
a5db1c56ab
Update README.md
...
Added example of how to stop and remove images in a single statement
2017-08-08 08:59:54 +01:00
Will Sargent
f7a679fd34
Merge pull request #136 from phoen1x/patch-1
...
Volumes can be files
2017-07-19 11:34:20 -07:00
Jon Højlund Arnfred
8a1f6b025d
set correct link to deprecated maintainer
2017-07-19 12:16:49 +02:00
Will Sargent
1d57803777
Remove aufs limitation
...
Fixed by https://github.com/moby/moby/pull/14242
2017-07-18 13:53:50 -07:00
Will Sargent
d2a1ec5ea2
Remove tasteful plug
2017-07-18 13:50:14 -07:00
Thomas
8f8c01a772
Volumes can be files
...
Just wanted to add that is possible to mount files as volumes.
Don't know if that is worth mentioning. But it can be useful if you want to toy around with a image from [Docker Hub](https://hub.docker.com ) without writing your own Dockerfile.
2017-07-15 17:22:21 +02:00
Domeee
673a1142ca
Add VS Code as common text editor
...
VS Code with the Docker extension provides a great experience to fiddle around with dockerfiles
2017-07-08 06:42:23 +02:00
a-maze-d
afede536ae
Fixing broken link
...
The link for "Understanding and Hardening Linux Containers" was broken, since the document was updated (v1.1 instead of v1.0)
2017-06-22 14:23:44 +02:00
Will Sargent
a55230e6dd
Add DOCKER_HOST_IP
2017-05-20 11:40:21 -07:00
johny.zheng
17089f15b9
Update README.md
...
Remove all untagged images
```
docker rmi $(docker images | grep “^” | awk “{print $3}”)
```
Remove container by a regular expression
```
docker ps -a | grep wildfly | awk '{print $1}' | xargs docker rm -f
```
Remove all exited containers
```
docker rm -f $(docker ps -a | grep Exit | awk '{ print $1 }')
```
2017-04-28 13:19:29 +08:00
Will Sargent
ce6f663e6b
Add note about user-defined networks.
2017-04-26 21:12:51 -07:00
Will Sargent
b7c3383a08
Add note to say COPY uses root
2017-04-26 21:12:17 -07:00
Will Sargent
f0cc9fcbd6
Update README.md
2017-04-26 12:53:10 -07:00
Will Sargent
1a502a6d32
I cannot even
2017-04-20 21:37:40 -07:00
tripleee
93e33f6a97
Update README.md
...
Intercity blog is 404; remove link
2017-03-15 11:50:08 +02:00
Alexandru Mirica
b471578ebb
MAINTAINER is deprecated. LABEL is used instead.
2017-02-20 08:44:20 +02:00
Claudio Proietti
720e356f8f
Correct format on added options -t, -d and --name
...
Correct format on added options -t, -d and --name
2017-02-01 22:08:34 +00:00
Claudio Proietti
4b95c79cc5
Added options -td and --name for docker run
...
Added options -td and --name for docker run with the full explanation about them.
2017-01-29 11:27:53 +00:00
Will Sargent
5845011bdc
Fix header
2017-01-10 15:13:01 -08:00
Will Sargent
9235f35ea9
Add prune and df commands as tops
2017-01-10 15:12:30 -08:00
Cuong Tran
eaa4b50247
Update README.md
...
Use gzip for compress images, container when export.
2016-12-09 20:16:50 +07:00
Jason Haines
7c210cc4c3
Why -> Why Docker
...
This section is about why docker, not about why a cheat sheet.
2016-10-31 09:43:21 +11:00
Will Sargent
8cfa57d7e2
Fix deploying link
2016-10-21 18:01:07 -07:00
Mauro
ae49fa19d9
Moved access to devices to a more appropiate section
2016-10-15 13:58:44 -03:00
Mauro
5a6825705d
Access to devices
2016-10-14 10:27:45 -03:00
Will Sargent
5f06c29fe7
Fix more links
2016-10-12 15:43:34 -07:00
Will Sargent
e140608df8
Fix links
2016-10-12 12:35:20 -07:00
Will Sargent
409553355f
service discovery apparently a thing
2016-10-12 12:28:09 -07:00
Will Sargent
f1b9251b94
Merge branch 'patch-1' of https://github.com/annafw/docker-cheat-sheet into annafw-patch-1
2016-10-12 12:17:38 -07:00
thorstenc
2744b320b9
Update README.md
2016-10-12 15:17:58 +13:00
thorstenc
51643fdea8
more url fixes
2016-10-12 14:56:24 +13:00