-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathbuild-all.sh
29 lines (25 loc) · 841 Bytes
/
build-all.sh
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
#!/bin/bash
echo "Building all the Docker images"
echo "make sure you have Docker installed"
echo "you have to run this script as sudo user"
echo "see here for more details:"
echo "https://github.com/danchitnis/container-xrdp"
echo ""
echo "starting the build process..."
REPO="danchitnis/xrdp"
docker build -t $REPO:amazon-mate -f ./amazon-mate/Dockerfile .
wait
docker build -t $REPO:amazon-xfce -f ./amazon-xfce/Dockerfile .
wait
docker build -t $REPO:centos7-mate -f ./centos7-mate/Dockerfile .
wait
docker build -t $REPO:centos7-xfce -f ./centos7-xfce/Dockerfile .
wait
#docker build -t $REPO:centos8-mate -f ./centos8-mate/Dockerfile .
wait
docker build -t $REPO:centos8-xfce -f ./centos8-xfce/Dockerfile .
wait
docker build -t $REPO:fedora-xfce -f ./fedora-xfce/Dockerfile .
wait
echo "build process is finished"
echo -e "exiting"