Tags
Details on using the Seq Docker container
The datalust/seq
container image container has a scheme for tagging container images based on their stability:
Tag | Example | Stability |
---|---|---|
latest | datalust/seq:latest | The latest stable release. Pulling from latest may bump the major version of Seq. |
preview | datalust/seq:preview | The latest preview release. These releases may contain preview features that aren't recommended for production environments but gives you a chance to test anything that's coming up. |
{major} | datalust/seq:5 | The latest release in a major version. Pulling from {major} will never bump the major version of Seq. |
{major}.{minor} | datalust/seq:5.1 | The latest release in a minor version. Pulling from {major}.{minor} will never bump the minor version of Seq. |
{major}.{minor}.{patch} | datalust/seq:5.1.3364 | A specific release that corresponds to a Windows MSI. Pulling from {major}.{minor}.{patch} will always give the same version. |
{major}.{minor}.{patch}-pre | datalust/seq:6.0.3403-pre | A specific preview release. Pulling from {major}.{minor}.{patch}-pre will always give the same version. |
Updated over 4 years ago