1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/etcd-arm/README.md

20 lines
399 B
Markdown
Raw Normal View History

2015-09-29 15:40:35 +00:00
etcd-arm
========
2015-10-01 11:09:30 +00:00
![](https://badge.imagelayers.io/vimagick/etcd-arm:latest.svg)
2015-10-01 04:29:56 +00:00
![](https://coreos.com/assets/images/media/Fleet-Scheduling.png)
2015-09-29 15:47:08 +00:00
## Cross compilation for Raspberry Pi
2015-09-29 15:40:35 +00:00
```
git clone https://github.com/coreos/etcd.git
cd etcd
2015-09-30 18:47:56 +00:00
# ARMv6
GOOS=linux GOARCH=arm GOARM=6 ./build
scp bin/* pi1:/usr/local/bin
# ARMv7
GOOS=linux GOARCH=arm GOARM=7 ./build
scp bin/* pi2:/usr/local/bin
2015-09-29 15:40:35 +00:00
```