You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had searched in the issues and found no similar issues.
Version
apache-doris-2.0.3-bin-arm64 on docker
What's Wrong?
I'm following the guide at the link
but I get the following error and I'm not finding any way to fix it: java.lang.RuntimeException: error in opening zip file
What You Expected?
Doris BE goes UP
How to Reproduce?
simply try to do the giude at the link above.
this are my dockerFile and docker compose :
DockerFile BE
# Choose a base image
FROM openjdk:8u342-jdk
# Set environment variables
ENV JAVA_HOME="/usr/local/openjdk-8/"
ENV PATH="/opt/apache-doris/be/bin:$PATH"
# 下Download the software into the Docker image
ADD ./resource/ApacheDoris2.0.3ARM64.tar.gz /opt/
RUN apt-get update && \
apt-get install -y default-mysql-client && \
apt-get clean && \
mkdir /opt/apache-doris && \
cd /opt && \
mv apache-doris-2.0.3-bin-arm64/be /opt/apache-doris/
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ADD ./resource/init_be.sh /opt/apache-doris/be/bin
RUN chmod 755 /opt/apache-doris/be/bin/init_be.sh
ENTRYPOINT ["/entrypoint.sh"]
entrypoint.sh
#!/bin/sh
sysctl -w vm.max_map_count=2000001
swapoff -a
/opt/apache-doris/be/bin/init_be.sh
Doris FE
# Choose a base image
FROM openjdk:8u342-jdk
# Set environment variables
ENV JAVA_HOME="/usr/local/openjdk-8/"
ENV PATH="/opt/apache-doris/fe/bin:$PATH"
# Download the software into the Docker image
ADD ./resource/ApacheDoris2.0.3ARM64.tar.gz /opt/
RUN apt-get update && \
apt-get install -y default-mysql-client && \
apt-get clean && \
mkdir /opt/apache-doris && \
cd /opt && \
mv apache-doris-2.0.3-bin-arm64/fe /opt/apache-doris/
ADD ./resource/init_fe.sh /opt/apache-doris/fe/bin
RUN chmod 755 /opt/apache-doris/fe/bin/init_fe.sh
ENTRYPOINT ["/opt/apache-doris/fe/bin/init_fe.sh"]
Search before asking
Version
apache-doris-2.0.3-bin-arm64 on docker
What's Wrong?
I'm following the guide at the link
but I get the following error and I'm not finding any way to fix it: java.lang.RuntimeException: error in opening zip file
What You Expected?
Doris BE goes UP
How to Reproduce?
simply try to do the giude at the link above.
this are my dockerFile and docker compose :
DockerFile BE
entrypoint.sh
Doris FE
docker-compose
i had to change volume managing so they are differente to the docker-compose in the documentation due to issue of docker on macOS
thx <3
Anything Else?
No response
Are you willing to submit PR?
Code of Conduct
The text was updated successfully, but these errors were encountered: