Browse Source

fix repo url in org.opencontainers.image.source label

Fabian Peter Hammerle 3 years ago
parent
commit
d8f2810483
2 changed files with 5 additions and 1 deletions
  1. 4 0
      CHANGELOG.md
  2. 1 1
      Dockerfile

+ 4 - 0
CHANGELOG.md

@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
+## [Unreleased]
+### Fixed
+- repo url in `org.opencontainers.image.source` label
+
 ## [0.1.0] - 2021-04-04
 ### Added
 - openssh server listening on tcp port `2200`

+ 1 - 1
Dockerfile

@@ -32,5 +32,5 @@ CMD ["/usr/sbin/sshd", "-D", "-e"]
 # https://github.com/opencontainers/image-spec/blob/v1.0.1/annotations.md
 ARG REVISION=
 LABEL org.opencontainers.image.title="single-user openssh server restricted to borgbackup backend" \
-    org.opencontainers.image.source="https://github.com/fphammerle/borgbackup-sshd" \
+    org.opencontainers.image.source="https://github.com/fphammerle/docker-borgbackup-sshd" \
     org.opencontainers.image.revision="$REVISION"