Semantic Versioning Tags
Fusion is available as a Docker image based on PHP's Alpine Linux image in the official Docker Hub repository.
latest: Highest semantic version (not necessarily the most recent build)- major:
1,2, etc. (non-breaking changes) - major.minor:
1.1,2.3, etc. - major.minor.patch:
1.1.0,2.3.4, etc.
Recommended Images
For stability and non-breaking updates in CI/CD pipelines, use the major version tag:
image: valvoid/fusion:1
For usability on a local development machine, pull the default tag and
optionally rename it to an alias for convenience. For example, to use
fusion as a local alias:
docker pull valvoid/fusion &&
docker tag valvoid/fusion fusion