-
Notifications
You must be signed in to change notification settings - Fork 35
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
Add Support for arm7l
architecture
#20
Comments
arm7l
architecture
Yes please. For he time being I am using |
Since cross compilation in Go works well, I built an ARM binary on my desktop using Docker and then copied it over (following the manual instructions other than the download step): docker run --name compose-switch-builder -e GOOS=linux -e GOARCH=arm golang:1.18 go install github.com/docker/[email protected] \
&& docker cp compose-switch-builder:/go/bin/linux_arm/compose-switch ./compose-switch \
&& docker rm -f compose-switch-builder Alternatively, if you have Go installed on your Raspberry Pi, you can build it locally: go install github.com/docker/[email protected]
sudo mv "$(go env GOPATH)/bin/compose-switch" /usr/local/bin/compose-switch |
If so. Would it be too hard to create a GitHub release compiled for Arm7l? This must be merely a github workflow configuration |
A little fix -- the
|
For me running in the above command, I needed the path to be |
Strangely enough -- running on |
Wanted to move to use compose-switch on my raspberrypi, but it seems that there's no compose-switch for armv7 :(
The text was updated successfully, but these errors were encountered: