Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions 03-arm64/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ docker buildx build -t radiantone/zookeeper:3.5.8-arm64 --platform linux/arm64 -
Build fid arm64 image
```
# add --push if you want to push to a repo
docker buildx build -t radiantone/fid:7.3.21-arm64 --platform linux/arm64 -f fid_Dockerfile .
docker buildx build -t radiantone/fid:7.4.9-arm64 --no-cache --pull --platform linux/arm64 -f fid_Dockerfile .
```
## Run Container
Running FID ARM64 image on other plaforms (non arm64) will require `--platform linux/arm64` flag
```
export LICENSE="PASTE_LICENSE_HERE"
docker run -it --hostname=myfid -e LICENSE="${LICENSE}" \
-p 7070:7070 -p 7171:7171 -p 8089:8089 -p 8090:8090 -p 2389:2389 -p 2636:2636 \
radiantone/fid:7.3.21-arm64
docker run -it --hostname=myfid -e LICENSE="${LICENSE}" -e INSTALL_SAMPLES="true" \
-p 7070:7070 -p 7171:7171 -p 8089:8089 -p 8090:8090 -p 2389:2389 -p 2636:2636 -p 1527:1527 \
radiantone/fid:7.4.9-arm64
```
## Java Version
Run these below Dockerfile to find our java version packaged inside fid or zookeeper image from radiantone
Expand All @@ -38,9 +38,9 @@ RUN tar xf zookeeper.tar.gz
RUN rli-zookeeper-external/jdk/bin/java -version
```
```
# docker build -t radiantone/fid:7.3.21-arm64 --progress=plain --no-cache -f fid_check_java_Dockerfile .
# docker build -t radiantone/fid:7.4.9-arm64 --progress=plain --no-cache -f fid_check_java_Dockerfile .
# CHECK FID JAVA VERSION Dockerfile
FROM radiantone/fid:7.3.21 as source
FROM radiantone/fid:7.4.9 as source
RUN tar xf installer.tar.gz
RUN vds/jdk/bin/java -version
```