Add fenced code block for first example
This commit is contained in:
parent
ce7111cffe
commit
b073300e51
|
|
@ -8,9 +8,11 @@ There are multiple images available in this repository. The image with the tag `
|
||||||
|
|
||||||
The `kernel` image contains just the Liberty kernel and no additional runtime features. This image can be used as the basis for custom built images that contain only the features required for a specific application. For example, the following Dockerfile starts with this image, copies in the `server.xml` that lists the features required by the application, and then uses the `installUtility` command to download those features from the online repository.
|
The `kernel` image contains just the Liberty kernel and no additional runtime features. This image can be used as the basis for custom built images that contain only the features required for a specific application. For example, the following Dockerfile starts with this image, copies in the `server.xml` that lists the features required by the application, and then uses the `installUtility` command to download those features from the online repository.
|
||||||
|
|
||||||
|
```dockerfile
|
||||||
FROM websphere-liberty:kernel
|
FROM websphere-liberty:kernel
|
||||||
COPY server.xml /opt/ibm/wlp/usr/servers/defaultServer/
|
COPY server.xml /opt/ibm/wlp/usr/servers/defaultServer/
|
||||||
RUN installUtility install --acceptLicense defaultServer
|
RUN installUtility install --acceptLicense defaultServer
|
||||||
|
```
|
||||||
|
|
||||||
The `common` image adds a set of features that are expected to be of use for a typical production scenario. These features are: `appSecurity-2.0`, `collectiveMember-1.0`, `localConnector-1.0`, `ldapRegistry-3.0`, `monitor-1.0`, `requestTiming-1.0`, `restConnector-1.0`, `sessionDatabase-1.0`, `ssl-1.0` and `webCache-1.0`. This image is the basis for the `webProfile6` and `webProfile7` images.
|
The `common` image adds a set of features that are expected to be of use for a typical production scenario. These features are: `appSecurity-2.0`, `collectiveMember-1.0`, `localConnector-1.0`, `ldapRegistry-3.0`, `monitor-1.0`, `requestTiming-1.0`, `restConnector-1.0`, `sessionDatabase-1.0`, `ssl-1.0` and `webCache-1.0`. This image is the basis for the `webProfile6` and `webProfile7` images.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue