Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Loading status checks…
-Merge branch 'multi-stage-build' of github.internet2.edu:docker/grou…
…per_noVM into tier-secrets -Password via env or env specified files examples
Showing
21 changed files
with
272 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
test-compose/ | ||
*.md | ||
manualBuild.sh | ||
Jenkinsfile | ||
LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
CLASSPATH=/opt/tomcat/bin/* | ||
JAVA_OPTS="-Dlog4j.configurationFile=/opt/tomcat/conf/log4j2.xml -DENV=$ENV -DUSERTOKEN=$USERTOKEN" | ||
LOGGING_MANAGER=-Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Configuration status="info"> | ||
<Properties> | ||
<Property name="layout">%d [%t] %-5p %c- %m%n</Property> | ||
</Properties> | ||
<Appenders> | ||
<File name="CATALINA" | ||
fileName="/tmp/logpipe"> | ||
<PatternLayout pattern="tomcat catalina.out ${env:ENV} ${env:USERTOKEN} ${layout}"/> | ||
</File> | ||
<File name="LOCALHOST" | ||
fileName="/tmp/logpipe"> | ||
<PatternLayout pattern="tomcat localhost.log ${env:ENV} ${env:USERTOKEN} ${layout}"/> | ||
</File> | ||
|
||
</Appenders> | ||
<Loggers> | ||
<Root level="info"> | ||
<AppenderRef ref="CATALINA"/> | ||
</Root> | ||
<Logger name="org.apache.catalina.core.ContainerBase.[Catalina].[localhost]" | ||
level="info" additivity="false"> | ||
<AppenderRef ref="LOCALHOST"/> | ||
</Logger> | ||
</Loggers> | ||
</Configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
CLASSPATH=/opt/tomee/bin/* | ||
JAVA_OPTS="-Dlog4j.configurationFile=/opt/tomee/conf/log4j2.xml -DENV=$ENV -DUSERTOKEN=$USERTOKEN" | ||
LOGGING_MANAGER=-Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Configuration status="info"> | ||
<Properties> | ||
<Property name="layout">%d [%t] %-5p %c- %m%n</Property> | ||
</Properties> | ||
<Appenders> | ||
<File name="CATALINA" | ||
fileName="/tmp/logpipe"> | ||
<PatternLayout pattern="tomee catalina.out ${env:ENV} ${env:USERTOKEN} ${layout}"/> | ||
</File> | ||
<File name="LOCALHOST" | ||
fileName="/tmp/logpipe"> | ||
<PatternLayout pattern="tomee localhost.log ${env:ENV} ${env:USERTOKEN} ${layout}"/> | ||
</File> | ||
|
||
</Appenders> | ||
<Loggers> | ||
<Root level="info"> | ||
<AppenderRef ref="CATALINA"/> | ||
</Root> | ||
<Logger name="org.apache.catalina.core.ContainerBase.[Catalina].[localhost]" | ||
level="info" additivity="false"> | ||
<AppenderRef ref="LOCALHOST"/> | ||
</Logger> | ||
</Loggers> | ||
</Configuration> |
Oops, something went wrong.