You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM cptactionhank/atlassian-jira-software:latest |
|
|
|
USER root |
|
|
|
# 将代理破解包加入容器 |
|
COPY "./lib/atlassian-agent.jar" /opt/atlassian/jira/ |
|
|
|
# 设置启动加载代理包 |
|
RUN echo 'export CATALINA_OPTS="-javaagent:/opt/atlassian/jira/atlassian-agent.jar ${CATALINA_OPTS}"' >> /opt/atlassian/jira/bin/setenv.sh |
|
|
|
|