You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 2, 2020. It is now read-only.
Right now tags are very specific, e.g. node:8.4.0-29. This doesn't allow us to use a wildcard version in our images, instead we can either fetch the latest tag or a very specific one:
# Fetch latest image to be pushed (could be 6 or 8, whatever was pushed last)FROM registry.opensource.zalan.do/stups/node
# Fetch very specific versionFROM registry.opensource.zalan.do/stups/node:8.4.0-29
My proposal is to rename the tags to node-{version}[-{flavor}], examples:
# Fetch latest Node 8FROM registry.opensource.zalan.do/stups/node-8
# Fetch specific Node 8 versionFROM registry.opensource.zalan.do/stups/node-8:8.4.0-29
# Fetch latest for LTS in Alpine flavorFROM registry.opensource.zalan.do/stups/node-lts-alpine:latest
# Fetch latest for Node 6 in Alpine flavorFROM registry.opensource.zalan.do/stups/node-6-alpine
# Fetch latest for Node CurrentFROM registry.opensource.zalan.do/stups/node-current