-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathupdate.sh
More file actions
executable file
·44 lines (33 loc) · 1.28 KB
/
update.sh
File metadata and controls
executable file
·44 lines (33 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Ubuntu Base / latest
docker build -t boinc/client:base-ubuntu -f Dockerfile.base-ubuntu .
docker push boinc/client:base-ubuntu
docker tag boinc/client:base-ubuntu boinc/client:latest
docker push boinc/client:latest
# Alpine Base
docker build -t boinc/client:base-alpine -f Dockerfile.base-alpine .
docker push boinc/client:base-alpine
# Nvidia
docker build -t boinc/client:nvidia -f Dockerfile.nvidia .
docker push boinc/client:nvidia
# AMD
docker build -t boinc/client:amd -f Dockerfile.amd .
docker push boinc/client:amd
# Intel
docker build -t boinc/client:intel -f Dockerfile.intel .
docker push boinc/client:intel
# Multi GPU
docker build -t boinc/client:multi-gpu -f Dockerfile.multi-gpu .
docker push boinc/client:multi-gpu
# VirtualBox
docker build -t boinc/client:virtualbox -f Dockerfile.virtualbox .
docker push boinc/client:virtualbox
# Enable builds for other architectures (i.e. arm32v7, arm64v8)
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
# Arm32v7
docker build --platform=linux/arm/v7 -t boinc/client:arm32v7 -f Dockerfile.arm32v7 .
docker push boinc/client:arm32v7
# Arm64v8
docker build --platform=linux/arm64/v8 -t boinc/client:arm64v8 -f Dockerfile.arm64v8 .
docker push boinc/client:arm64v8
# Remove all the docker images
docker system prune -a