Sebastiaan van Stijn
9af8c56834
Merge pull request #11176 from alinuxien/patch-1
...
Improved Dockerfile compatibility and readability
2020-08-11 15:25:35 +02:00
Joshua Powers
8058df4f7e
Update ubuntu.md
...
Ubuntu 19.10 (Eoan) is EOL.
2020-08-10 11:16:12 -07:00
Sebastiaan van Stijn
e9750cda78
engine/api: fix incorrect ID on "http" tab
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-08-04 15:26:56 +02:00
Frederic Hemberger
e529754f96
examples.md: Actually use `ctx` variable in Go example
...
"List and manage containers" Go example:
`ctx := context.Background()` was defined but never used.
Follow the structure of the other examples instead.
2020-08-02 10:20:54 +02:00
Usha Mandya
b39a6c26d6
Merge pull request #11020 from ProgramComputer/patch-1
...
Update debian.md
2020-07-29 14:07:47 +01:00
Usha Mandya
a46a62bafc
Add a note on turning experimental features on
...
Add a note to specify users must turn on the experimental features flag manually when they switch from stable to edge releases.
2020-07-28 12:03:56 +01:00
Takekazu Omi
a8975aaaf7
fix install script url
...
see
https://github.com/docker/aci-integration-beta/pull/19/files
2020-07-27 22:14:17 +09:00
Ali Akrour
edbb9f9e75
Improved Dockerfile compatibility
...
line 28 : modified the regexp to also match if the optional '#' caracter is present to comment the line, like it was by default on my Debian:9 official based image.
line 28 : modified the regexp by adding the 'g' end caracter, just for better readability for beginners like me.
line 31 : modified the order between option '-i' and the regexp argument, just for better readability for beginners like me.
2020-07-23 17:38:31 +02:00
Usha Mandya
e963211456
Add req on ARN and resource format
...
A new prerequiste on opting into the AWS account into the new ARN and resource format
2020-07-21 18:25:12 +01:00
Usha Mandya
378a6ddfa8
Merge pull request #11151 from usha-mandya/cloud-deploy-docs
...
Move cloud deployment docs to the Guides section
2020-07-21 10:07:19 +01:00
Sebastiaan van Stijn
a1d3215534
Add engine 19.03.12 release notes
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-07-20 12:58:18 +02:00
Usha Mandya
a1eafd4170
Move cloud deployment docs to the Guides section
2020-07-17 16:02:04 +01:00
Nicolas De loof
77002162af
document x-aws-cluster ( #11150 )
...
* document x-aws-cluster
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
* Minor style updates
Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2020-07-17 12:34:47 +01:00
Chris Crone
9b6fff076e
Merge pull request #10887 from carthurs/master
...
Basic go example was not working with v1.41
2020-07-16 14:09:17 +02:00
Emad Alashi
6338d9674c
Change ignored directory to forward slash
...
When using the backward slash I think it will only use on Windows?
In my case I was on MacOS and the folders weren't ignored until I changed the slashes to be forward slash.
2020-07-11 22:06:13 +10:00
Laurens Vanderhoven
eb8880f1fd
Fix commands
...
`docker compose ecs` to `docker ecs compose`
2020-07-10 08:22:13 +02:00
Usha Mandya
03f8c63994
Merge pull request #11117 from usha-mandya/ecs-integration
...
Update install script
2020-07-09 17:04:54 +01:00
Usha Mandya
6279d6067a
Update install script
2020-07-09 17:01:49 +01:00
Usha Mandya
1b4fe9177b
Merge pull request #11113 from usha-mandya/ecs-integration
...
Docker ECS Integration beta docs
2020-07-09 16:34:50 +01:00
Usha Mandya
ebc4ac985d
Add Docker ECS Integration docs
2020-07-09 15:56:06 +01:00
Guillaume Tardif
2e3b1e0211
Remove pinned version 0.1.4 from ACI integration install docs ( #11111 )
...
* Remove pinned version 0.1.4 from ACI integration install docs
* Style updates
Added `target=_blank` to ensure the GH page opens in a new tab
Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2020-07-09 14:51:18 +01:00
Sebastiaan van Stijn
021e13a5ed
Remove EE "trust pinning" section
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-07-02 23:37:01 +02:00
Sebastiaan van Stijn
2b4833a355
Remove some references to enterprise products
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-07-02 23:36:48 +02:00
Martin Joly
dbd9ba12f9
Fix wrong information ( #10977 )
...
Postgres last version is now >12.0.0.
2020-07-01 14:09:51 +01:00
Sujay Pillai
8d1b473aa7
Add a note to create a context in different subscription ( #11065 )
...
* Add a note to create a context in different subscription
* Minor style updates
Made a minor tweak to the style and wrapped the new note to 80 chars
Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2020-07-01 09:30:40 +01:00
Andre Almar
6f38ea561b
Fixing ImageList Go code
...
Original: on line 18 we have `images, err := cli.ImageList(context.Background(), types.ImageListOptions{})` which gives us an error of:
```
# command-line-arguments
./main.go:12:2: ctx declared but not used
```
*Fix:* on line 18 we need to have `images, err := cli.ImageList(ctx, types.ImageListOptions{})`
2020-06-29 16:01:24 -03:00
Usha Mandya
7ee5e8c080
Update Desktop Edge download URLs
2020-06-29 13:22:24 +01:00
Akihiro Suda
a7e2591552
rootless.md: fix markdown
...
Fix #11017
Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
2020-06-26 14:27:33 +09:00
Usha Mandya
efca8fef15
Add docs for Docker Azure integration beta
2020-06-25 16:09:38 +01:00
Paul
3b57ab426c
Update debian.md
...
containerd package still in library
2020-06-20 20:59:43 -05:00
Akihiro Suda
b7eec33cfe
rootless.md: fix a typo ( #11013 )
2020-06-18 09:08:55 +01:00
Usha Mandya
f91c2a28f6
Rootless Docker: Style edits and minor updates ( #11001 )
...
Rootletts: Style edits and minor updates, and fix prereq example
2020-06-17 11:33:24 +02:00
Usha Mandya
786c89bdf6
Merge pull request #10965 from AkihiroSuda/rootless
...
rootless.md: massive update
2020-06-16 14:55:44 +01:00
Sebastiaan van Stijn
3e767a72b3
Update architectures in matrix ( #10999 )
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-06-16 14:39:07 +01:00
José Fernando Cordova
e3c3484c47
Fix 404 Not Found - Broken Link ( #10997 )
...
* Fix 404 Not Found - Broken Link
Co-authored-by: Sebastiaan van Stijn <thaJeztah@users.noreply.github.com>
2020-06-16 14:55:51 +02:00
Akihiro Suda
a06b01802c
rootless.md: massive update
...
* Add Ubuntu 20.04
* Remove Fedora 30 (EOL)
* `docker run --net=host` does not work in the most expected way
* Allow installation as the root
* Nightly channel
* `docker context create rootless`
* `DOCKER_HOST=ssh://...`
* Alternatives to cgroup flags (`docker run --cpus --memory --pids-limit`)
* A bunch of troubleshooting tips
Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
2020-06-16 19:20:18 +09:00
JD Cargile
9960ff107c
Fix "Docker Docker Image" link
2020-06-08 23:13:38 -06:00
Usha Mandya
df3bd29a3e
Remove links to success articles
2020-06-05 17:14:49 +01:00
Amal
12b8e799c7
Typo fixture ( #10950 )
...
* Typo fixture
* Minor typo fix
* Typo fix
2020-06-03 19:21:11 +01:00
Sebastiaan van Stijn
a25fa2949e
Engine: add Ubuntu 20.04 (Focal) to list of versions ( #10944 )
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-06-02 14:55:31 +01:00
Usha Mandya
18f02bed7c
Add Engine v19.03.11 release notes ( #10940 )
...
* Add Engine v19.03.11 release notes
* Add detailed info
2020-06-02 14:36:46 +01:00
Orlando Fernandes
c2ca7143fa
Fix link to default value of DEBIAN_FRONTEND ( #10916 )
...
Fix link to default value of DEBIAN_FRONTEND
The old link is broken
2020-06-02 13:15:07 +02:00
Roberto O. Fernández Crisial
3d3054d16a
Adding version 19.03.10 ( #10924 )
2020-05-29 17:14:20 +01:00
Roberto O. Fernández Crisial
1d3adcb065
Adding version 19.03.9 ( #10860 )
2020-05-26 15:13:15 +01:00
Sebastiaan van Stijn
c964a5d40a
Merge pull request #10872 from JanKanis/patch-1
...
fix description for ptrace in seccomp.md
2020-05-26 12:37:26 +02:00
Dinakar Kulkarni
9c86eaaae2
Add space between prompt and command ( #10876 )
...
When rendered in the actual docs, this will not be highlighted as a reference to a shell variable.
2020-05-26 10:42:56 +01:00
Chris Arthurs
14e83cac6d
Basic go example was not working with v1.41
...
Fixed go example:
1) so that it actually compiles, and
2) so that you get to see the output `hello world` in visual studio code's console (`Tty: true,`).
2020-05-25 14:28:51 +01:00
Jan Kanis
b4ab954d3f
fix description for ptrace in seccomp.md
...
The existing description leads the reader to believe that dropping CAP_SYS_PTRACE already blocks all ptraces. That is not true, it only blocks ptracing arbitrary processes. Ptracing child processes is still allowed.
2020-05-22 13:36:45 +02:00
Usha Mandya
1146a688c4
Merge pull request #10838 from usha-mandya/justincormack/smarmclassic
...
Remove Swarm Classic docs
2020-05-19 13:37:50 +01:00
Usha Mandya
3864d792fd
Update ToC and add redirects
2020-05-18 23:51:52 +01:00