Update manual docker publish release docs (#1179)

This commit is contained in:
Leendert de Borst
2025-09-04 14:22:42 +02:00
committed by Leendert de Borst
parent 17e8b6c16c
commit 4af333e22d

View File

@@ -65,7 +65,16 @@ docker login
# Build and push all-in-one image
# Note: replace 0.22.0 below with the actual tag of the version that you're building and pushing
docker buildx build --platform linux/amd64,linux/arm64/v8 -f dockerfiles/all-in-one/Dockerfile -t aliasvault/aliasvault:0.22.0 -t aliasvault/aliasvault:latest --push .
docker buildx build --platform linux/amd64,linux/arm64/v8 \
-f dockerfiles/all-in-one/Dockerfile \
-t aliasvault/aliasvault:0.22.0 \
-t aliasvault/aliasvault:latest \
--label "org.opencontainers.image.source=https://github.com/aliasvault/aliasvault" \
--label "org.opencontainers.image.vendor=AliasVault" \
--label "org.opencontainers.image.licenses=AGPL-3.0" \
--label "org.opencontainers.image.title=AliasVault All-in-One" \
--label "org.opencontainers.image.description=Self-contained AliasVault server including web app, with all services bundled using s6-overlay. Single container solution for easy deployment (see docs.aliasvault.net)." \
--push .
```
**Ghcr.io**
@@ -75,7 +84,16 @@ docker login ghcr.io
# Build and push all-in-one image
# Note: replace 0.22.0 below with the actual tag of the version that you're building and pushing
docker buildx build --platform linux/amd64,linux/arm64/v8 -f dockerfiles/all-in-one/Dockerfile -t ghcr.io/aliasvault/aliasvault:0.22.0 -t ghcr.io/aliasvault/aliasvault:latest --push .
docker buildx build --platform linux/amd64,linux/arm64/v8 \
-f dockerfiles/all-in-one/Dockerfile \
-t ghcr.io/aliasvault/aliasvault:0.22.0 \
-t ghcr.io/aliasvault/aliasvault:latest \
--label "org.opencontainers.image.source=https://github.com/aliasvault/aliasvault" \
--label "org.opencontainers.image.vendor=AliasVault" \
--label "org.opencontainers.image.licenses=AGPL-3.0" \
--label "org.opencontainers.image.title=AliasVault All-in-One" \
--label "org.opencontainers.image.description=Self-contained AliasVault server including web app, with all services bundled using s6-overlay. Single container solution for easy deployment (see docs.aliasvault.net)." \
--push .
```
## Publish new browser extension version