We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe. I would like to run a relay server on Amazon Graviton CPU (Arm OS/ARCH)
The other containers in the docker compose file all support x86 and arm except the gsn container
Describe the solution you'd like Use buildx to build the docker container to support multiple machines
docker buildx create --use docker buildx build --platform linux/arm/v7,linux/arm64/v8,linux/amd64 --push --tag $IMAGE .
currently the relay container is build using docker build -t $IMAGE . <- this only support's the cpu type that the server is built on
docker build -t $IMAGE .
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
I would like to run a relay server on Amazon Graviton CPU (Arm OS/ARCH)
The other containers in the docker compose file all support x86 and arm except the gsn container
Describe the solution you'd like
Use buildx to build the docker container to support multiple machines
currently the relay container is build using
docker build -t $IMAGE .
<- this only support's the cpu type that the server is built onThe text was updated successfully, but these errors were encountered: