Skip to content
This repository was archived by the owner on Oct 2, 2020. It is now read-only.
This repository was archived by the owner on Oct 2, 2020. It is now read-only.

Proposal: Support abstract image tags for different release versions/lines/flavors #49

@lufzle

Description

@lufzle

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 version
FROM 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 8
FROM registry.opensource.zalan.do/stups/node-8

# Fetch specific Node 8 version
FROM registry.opensource.zalan.do/stups/node-8:8.4.0-29

# Fetch latest for LTS in Alpine flavor
FROM registry.opensource.zalan.do/stups/node-lts-alpine:latest

# Fetch latest for Node 6 in Alpine flavor
FROM registry.opensource.zalan.do/stups/node-6-alpine

# Fetch latest for Node Current
FROM registry.opensource.zalan.do/stups/node-current

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions