* Updated release notes and FAQ around EFS
Signed-off-by: French Ben <frenchben@docker.com>
* Added note around machine restart ssh access
Signed-off-by: French Ben <frenchben@docker.com>
* Edge release added
Signed-off-by: French Ben <frenchben@docker.com>
* Disabled EFS encryption
Signed-off-by: French Ben <frenchben@docker.com>
* Added note on upgrade and EFS declaration
Signed-off-by: French Ben <frenchben@docker.com>
* Migrate notes to proper md
Signed-off-by: French Ben <frenchben@docker.com>
I'm not quite sure about how the `{:width="400px"}` attribute will be rendered, but it looks like there was a typo preventing the SVG from being rendered on https://docs.docker.com/notary/service_architecture/
The explanation of dit in the "Communicate between a container and a swarm service" was helpful but wasn't written in an earlier walk through on the same page. I just simply added it to the "Use an overlay network for standalone containers" walkthrough so that people come across it in case they only see this one walkthrough.
Add documentation for printing values on separate line.
Useful when multiples volumes are mounted or when a container has multiple IPAddress
See docker/docker.github.io#35887
Signed By : Yash Jain <ydjainopensource@gmail.com>
The very first example (https://docs.docker.com/develop/sdk/examples/#run-a-container) has two annoying issues fixed by this patch:
1. The `ImagePull` call does not complete before the subsequent `ContainerCreate` call is issued. As a result, there is a race between pulling the image and starting the container from the image. For locally cached images, `ContainerCreate` will still work, but for images that have to be pulled, it will likely fail. This was [reported on StackOverflow](https://stackoverflow.com/questions/42816132/docker-run-using-golang-api-docker-docs) but not fixed yet.
2. The `ContainerLogs` call doesn't return a string, but rather an intermixed byte buffer with the stdout and stderr from the container. This can be highly confusing. Added `Tty: true` to the `ContainerCreate` call such that the `ContainerLogs` output only includes stdout.
`-z` option for tar is used to filter through gzip. This should be excluded for the restore as it was not used during the backup.
The path is also fixed as it recreated the entire path within the volumes folder.