Run update.sh
This commit is contained in:
parent
1c89219232
commit
3e273f3796
|
|
@ -103,6 +103,15 @@ This variant is highly recommended when final image size being as small as possi
|
||||||
|
|
||||||
To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar).
|
To minimize image size, it's uncommon for additional related tools (such as `git` or `bash`) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the [`alpine` image description](https://hub.docker.com/_/alpine/) for examples of how to install packages if you are unfamiliar).
|
||||||
|
|
||||||
|
## `golang:windowsservercore`
|
||||||
|
|
||||||
|
This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016.
|
||||||
|
|
||||||
|
For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft:
|
||||||
|
|
||||||
|
- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server)
|
||||||
|
- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10)
|
||||||
|
|
||||||
# License
|
# License
|
||||||
|
|
||||||
View [license information](http://golang.org/LICENSE) for the software contained in this image.
|
View [license information](http://golang.org/LICENSE) for the software contained in this image.
|
||||||
|
|
|
||||||
|
|
@ -115,6 +115,23 @@ Note that users on host systems with SELinux enabled may see issues with this. T
|
||||||
$ chcon -Rt svirt_sandbox_file_t /my/own/datadir
|
$ chcon -Rt svirt_sandbox_file_t /my/own/datadir
|
||||||
```
|
```
|
||||||
|
|
||||||
|
# Image Variants
|
||||||
|
|
||||||
|
The `mongo` images come in many flavors, each designed for a specific use case.
|
||||||
|
|
||||||
|
## `mongo:<version>`
|
||||||
|
|
||||||
|
This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of.
|
||||||
|
|
||||||
|
## `mongo:windowsservercore`
|
||||||
|
|
||||||
|
This image is based on [Windows Server Core (`microsoft/windowsservercore`)](https://hub.docker.com/r/microsoft/windowsservercore/). As such, it only works in places which that image does, such as Windows 10 Professional/Enterprise (Anniversary Edition) or Windows Server 2016.
|
||||||
|
|
||||||
|
For information about how to get Docker running on Windows, please see the relevant "Quick Start" guide provided by Microsoft:
|
||||||
|
|
||||||
|
- [Windows Server Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_server)
|
||||||
|
- [Windows 10 Quick Start](https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/quick_start_windows_10)
|
||||||
|
|
||||||
# License
|
# License
|
||||||
|
|
||||||
View [license information](https://github.com/mongodb/mongo/blob/7c3cfac300cfcca4f73f1c3b18457f0f8fae3f69/README#L71) for the software contained in this image.
|
View [license information](https://github.com/mongodb/mongo/blob/7c3cfac300cfcca4f73f1c3b18457f0f8fae3f69/README#L71) for the software contained in this image.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue