Docker image for ownCloud Web — the modern ownCloud frontend. Published to Docker Hub as owncloud/web.
| Tag | Description |
|---|---|
latest, 12, 12.3, 12.3.3 |
Current stable release |
docker run -p 8080:8080 owncloud/web:latestThe web UI is served on port 8080.
- On a feature branch, update
versionandextra-tagsin the matrix in.github/workflows/main.yml - Open a PR, get it reviewed and merged into
master - Tag the merge commit and push the tag:
git tag v<VERSION>
git push origin v<VERSION>The CI workflow builds multi-arch images (linux/amd64, linux/arm64), runs a Trivy security scan, and pushes to Docker Hub only on tag events.
Build locally:
docker build --build-arg VERSION=12.3.3 -f Dockerfile.multiarch -t owncloud/web:dev .