Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:
id-token: write

env:
OPENREEL_VERSION: v0.4.0
OPENREEL_VERSION: v0.5.0

jobs:
build-push:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

FROM node:24-alpine AS source

ARG OPENREEL_VERSION=v0.4.0
ARG OPENREEL_VERSION=v0.5.0

RUN apk add --no-cache git
WORKDIR /src
Expand Down
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ HelmForge container image for OpenReel Video, a browser-based video editor.

## Image

- `docker.io/helmforge/openreel-video:v0.4.0`
- `docker.io/helmforge/openreel-video:latest`
- `docker.io/helmforge/openreel-video:v0.5.0`

The image builds the upstream `Augani/openreel-video` release and serves the
Vite static output with an unprivileged NGINX runtime on port `8080`.
Expand All @@ -20,11 +19,14 @@ Vite static output with an unprivileged NGINX runtime on port `8080`.
## Build Locally

```bash
docker build --build-arg OPENREEL_VERSION=v0.4.0 -t helmforge/openreel-video:v0.4.0 .
docker run --rm -p 8080:8080 helmforge/openreel-video:v0.4.0
docker build \
--build-arg OPENREEL_VERSION=v0.5.0 \
-t helmforge/openreel-video:v0.5.0 .
docker run --rm -p 8080:8080 helmforge/openreel-video:v0.5.0
curl -fsS http://127.0.0.1:8080/healthz
```

## Source

- Upstream: https://github.com/Augani/openreel-video
- Image: https://github.com/helmforgedev/openreel-video
- Upstream: [Augani/openreel-video](https://github.com/Augani/openreel-video)
- Image: [helmforgedev/openreel-video](https://github.com/helmforgedev/openreel-video)
Loading