-
Notifications
You must be signed in to change notification settings - Fork 6.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
shardingsphere-agent
should have a more convenient distribution method
#32777
Comments
shardingsphere-agent
JAR not published to Maven Central?shardingsphere-agent
should have a more convenient distribution method
@linghengqian Hi, Can download it from the official website address https://shardingsphere.apache.org/document/current/en/downloads/ |
FROM alpine AS prepare
# `APP_NAME` will be dynamically set to `apache-shardingsphere-5.5.1-SNAPSHOT-shardingsphere-agent-bin` from `distribution/agent/pom.xml`
ARG APP_NAME
ADD target/${APP_NAME}.tar.gz /opt
RUN mv /opt/${APP_NAME} /opt/shardingsphere-agent
FROM eclipse-temurin:22-jdk
MAINTAINER ShardingSphere "dev@shardingsphere.apache.org"
ENV LOCAL_PATH /opt/shardingsphere-agent
COPY --from=prepare /opt/shardingsphere-agent /opt/shardingsphere-agent |
Can you try to implement it? |
|
|
|
Feature Request
For English only, other languages will not be accepted.
Please pay attention on issues you submitted, because we maybe need more details.
If no response anymore and we cannot make decision by current information, we will close it.
Please answer these questions before submitting your issue. Thanks!
Is your feature request related to a problem?
Describe the feature you would like.
org.apache.shardingsphere:shardingsphere-agent:5.5.0
JAR not published to Maven Central? I looked at https://repo1.maven.org/maven2/org/apache/shardingsphere/shardingsphere-agent/5.5.0/ and found that there was only the definition file for the POM.org.apache.shardingsphere:shardingsphere-agent:5.5.0
as documented at https://shardingsphere.apache.org/document/current/en/user-manual/shardingsphere-jdbc/observability/ .Dockerfile
.COPY --from=apache/shardingsphere-agent:5.5.0 /apache-shardingsphere-5.5.0-shardingsphere-agent-bin ./apache-shardingsphere-agent/
The text was updated successfully, but these errors were encountered: