File tree 4 files changed +5
-4
lines changed
4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ RUN ln -s /lib/x86_64-linux-gnu/libc.so.6 /lib/libc.so.6
33
33
34
34
# ====GET ZIP FILES====
35
35
ADD https://altd.embarcadero.com/getit/public/libraries/RADServer/RADServerLinux-20240402.zip ./radserver.zip
36
- ADD https://altd.embarcadero.com/releases/studio/23.0/121/LinuxPAServer23.0.tar.gz ./paserver.tar.gz
36
+ ADD https://altd.embarcadero.com/releases/studio/23.0/121/1211/ LinuxPAServer23.0.tar.gz ./paserver.tar.gz
37
37
38
38
RUN unzip radserver.zip
39
39
RUN tar xvzf paserver.tar.gz
Original file line number Diff line number Diff line change @@ -7,8 +7,9 @@ if [ "$1" = '' ] || [ "$2" = '' ]; then
7
7
else
8
8
docker build --build-arg password=securepass \
9
9
--build-arg dbhost=$1 --build-arg dbport=$2 \
10
+ --platform linux/amd64 \
10
11
--tag radstudio/pa-radserver:latest \
11
12
--tag radstudio/pa-radserver:athens \
12
- --tag radstudio/pa-radserver:12.1 \
13
+ --tag radstudio/pa-radserver:12.1.1 \
13
14
.
14
15
fi
Original file line number Diff line number Diff line change @@ -5,5 +5,5 @@ if [ "$1" = '' ] || [ "$2" = '' ]; then
5
5
echo " Required arguments: RAD Server database (InterBase) host and port" ;
6
6
echo " ex: run-production.sh example.com 3050" ;
7
7
else
8
- docker run -d --mount source=ems,target=/etc/ems -e DB_PORT=$2 -e DB_HOST=$1 -e CONFIG=PRODUCTION -p 80:80 radstudio/pa-radserver:latest
8
+ docker run -d --platform linux/amd64 -- mount source=ems,target=/etc/ems -e DB_PORT=$2 -e DB_HOST=$1 -e CONFIG=PRODUCTION -p 80:80 radstudio/pa-radserver:latest
9
9
fi
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ if [ "$1" = '' ] || [ "$2" = '' ]; then
6
6
echo " ex: run.sh example.com 3050" ;
7
7
else
8
8
echo " PAServer Password: securepass"
9
- docker run --cap-add=SYS_PTRACE --security-opt seccomp=unconfined \
9
+ docker run --cap-add=SYS_PTRACE --security-opt seccomp=unconfined --platform linux/amd64 \
10
10
-it --mount source=ems,target=/etc/ems \
11
11
-e DB_PORT=$2 -e DB_HOST=$1 \
12
12
-e PA_SERVER_PASSWORD=securepass -p 80:80 -p 64211:64211 -p 8082:8082 \
You can’t perform that action at this time.
0 commit comments