aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-02-15 01:46:55 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-02-15 01:46:55 -0500
commit6b5859f91e749179639c5d87c5dc47f9e0b96bf7 (patch)
tree617e626c0b68bd66464e141102178ba6f0a1efe8
parentUpdate README with design decisions and spec (diff)
downloadjellyfin-packaging-6b5859f91e749179639c5d87c5dc47f9e0b96bf7.tar.gz
jellyfin-packaging-6b5859f91e749179639c5d87c5dc47f9e0b96bf7.tar.bz2
jellyfin-packaging-6b5859f91e749179639c5d87c5dc47f9e0b96bf7.zip
Mention GHCR too
-rw-r--r--README.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/README.md b/README.md
index 33998bf..656df51 100644
--- a/README.md
+++ b/README.md
@@ -105,6 +105,10 @@ TODO - these have not yet been implemented.
This was chosen to keep our Docker builds as simple as possible without requiring 2 intervening images (as was the case with our previous CI).
+* Push to both DockerHub and GHCR (GitHub Packages)
+
+ This ensures flexibility for container users to fetch the containers from whatever repository they choose.
+
### Portable Builds (Portable .NET, Linux, MacOS, Windows)
* Single unified build: the entirety of the output package is built in one container from one Dockerfile, with the output archive type (`.tar.gz` or `.zip`) chosen based on the target.
bgstack15