-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #103 from aguibert/docs-runtimes
Add supported runtimes doc page
- Loading branch information
Showing
6 changed files
with
98 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,82 @@ | ||
--- | ||
layout: post | ||
title: "Supported Runtimes" | ||
--- | ||
|
||
## [Open Liberty](https://openliberty.io/) | ||
|
||
Maven Dependency: | ||
|
||
```xml | ||
<dependency> | ||
<groupId>org.microshed</groupId> | ||
<artifactId>microshed-testing-liberty</artifactId> | ||
<version>0.4.2</version> | ||
</dependency> | ||
``` | ||
|
||
Example Dockerfile: | ||
|
||
``` | ||
FROM open-liberty:microProfile3 | ||
COPY src/main/liberty/config /config/ | ||
ADD build/libs/myservice.war /config/dropins | ||
``` | ||
|
||
## [Payara Micro](https://www.payara.fish/software/payara-server/payara-micro/) | ||
|
||
Maven Dependency: | ||
|
||
```xml | ||
<dependency> | ||
<groupId>org.microshed</groupId> | ||
<artifactId>microshed-testing-payara-micro</artifactId> | ||
<version>0.4.2</version> | ||
</dependency> | ||
``` | ||
|
||
Example Dockerfile: | ||
|
||
``` | ||
FROM payara/micro:5.193 | ||
CMD ["--deploymentDir", "/opt/payara/deployments", "--noCluster"] | ||
ADD build/libs/myservice.war /opt/payara/deployments | ||
``` | ||
|
||
## [Payara Server](https://www.payara.fish/software/payara-server/) | ||
|
||
Maven Dependency: | ||
|
||
```xml | ||
<dependency> | ||
<groupId>org.microshed</groupId> | ||
<artifactId>microshed-testing-payara-server</artifactId> | ||
<version>0.4.2</version> | ||
</dependency> | ||
``` | ||
|
||
Example Dockerfile: | ||
|
||
``` | ||
FROM payara/server-full:5.193 | ||
ADD target/myservice.war /opt/payara/deployments | ||
``` | ||
|
||
## [Wildfly](https://wildfly.org/) | ||
|
||
Generic Maven Dependency: | ||
|
||
```xml | ||
<dependency> | ||
<groupId>org.microshed</groupId> | ||
<artifactId>microshed-testing-testcontainers</artifactId> | ||
<version>0.4.2</version> | ||
</dependency> | ||
``` | ||
|
||
Example Dockerfile: | ||
|
||
``` | ||
FROM jboss/wildfly | ||
ADD build/libs/myservice.war /opt/jboss/wildfly/standalone/deployments/ | ||
``` |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,7 @@ | ||
--- | ||
layout: post | ||
title: "External Resources" | ||
--- | ||
|
||
- [MicroShed Testing guide on openliberty.io](https://openliberty.io/guides/microshed-testing.html) | ||
- [Testcontainers documentation](https://www.testcontainers.org/) |