Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] master from jitsi:master #146

Merged
merged 1 commit into from
Dec 19, 2024
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
5 changes: 1 addition & 4 deletions doc/grid/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
ARG BROWSER=chrome
ARG VERSION=latest
FROM --platform=$TARGETPLATFORM selenium/standalone-${BROWSER}:${VERSION}
ARG TARGETPLATFORM
ARG BUILDPLATFORM

FROM selenium/standalone-${BROWSER}:${VERSION}

USER root

Expand Down
7 changes: 7 additions & 0 deletions doc/grid/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ docker build --build-arg VERSION=beta --build-arg BROWSER=firefox -t jitsi/stand
docker build --build-arg VERSION=beta --build-arg BROWSER=chrome -t jitsi/standalone-chrome:beta .
```

OR alternately create multi-arch images (only for chromium and firefox, no chrome arm64 builds available from Google.
You will need your own docker registry or project to push these to. Example below
```
PRIVATE_DOCKER_REGISTRY=example/standalone-firefox
docker buildx build --build-arg VERSION=latest --build-arg BROWSER=firefox--platform=linux/arm64,linux/amd64 --push --pull --progress=plain --tag $PRIVATE_DOCKER_REGISTRY:latest .
```

### Start the grid
```
docker-compose-v3-dynamic-grid.yml
Expand Down
Loading