You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
424 B
22 lines
424 B
https://github.com/fenggolang/go-proxy
|
|
|
|
## build arm64 on oracle k8s
|
|
```bash
|
|
cd /root
|
|
rm -rf goPrivoxy
|
|
git clone https://git.sre.ink/go/goPrivoxy.git
|
|
cd goPrivoxy
|
|
make build-linux-arm64
|
|
docker build -t sre/goprivoxy:arm64 .
|
|
kubectl -n sre rollout restart deployment go-privoxy
|
|
```
|
|
|
|
## build amd64 on vm
|
|
```bash
|
|
cd /root
|
|
rm -rf goPrivoxy
|
|
git clone https://git.sre.ink/go/goPrivoxy.git
|
|
cd goPrivoxy
|
|
make build-linux-amd64
|
|
```
|