Skip to content

Commit

Permalink
Add version number and container meta data
Browse files Browse the repository at this point in the history
  • Loading branch information
RikDTJanssen committed Dec 23, 2024
1 parent 49a225d commit 06fe205
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
# - stop: podman stop -a
# - status of all containers: podman ps
# - list of all containers: podman images
# - get latest version of all containers: podman auto-update
# - remove all podman containers: podman rmi -a -f
# - other useful: podman [inspect|restart|logs] ricgraph
# - execute command in container: podman exec -it ricgraph [command]
Expand All @@ -94,14 +95,15 @@ ARG neo4j_community_version=5.24.0

# Set container metadata according to
# OCI (Open Container Initiative) image specification.
# GitHub GHCR needs a space instead of a '='.
LABEL org.opencontainers.image.title Ricgraph
LABEL org.opencontainers.image.description "Ricgraph - Research in context graph"
LABEL org.opencontainers.image.authors "Rik D.T. Janssen"
LABEL org.opencontainers.image.version ${ricgraph_version}
LABEL org.opencontainers.image.licenses MIT
LABEL org.opencontainers.image.documentation "https://github.com/UtrechtUniversity/ricgraph/blob/main/README.md"
LABEL org.opencontainers.image.source "https://github.com/UtrechtUniversity/ricgraph"
# See https://github.com/opencontainers/image-spec/blob/main/annotations.md.
LABEL org.opencontainers.image.title=Ricgraph
LABEL org.opencontainers.image.description="Ricgraph - Research in context graph"
LABEL org.opencontainers.image.authors="Rik D.T. Janssen"
LABEL org.opencontainers.image.version=${ricgraph_version}
LABEL org.opencontainers.image.licenses=MIT
LABEL org.opencontainers.image.documentation="https://github.com/UtrechtUniversity/ricgraph/blob/main/README.md"
LABEL org.opencontainers.image.source="https://github.com/UtrechtUniversity/ricgraph"
LABEL org.opencontainers.image.url="https://www.ricgraph.eu"

# Ricgraph paths
ARG ricgraph_download=https://github.com/UtrechtUniversity/ricgraph
Expand Down

0 comments on commit 06fe205

Please sign in to comment.