Skip to content

Commit f20cb5b

Browse files
authored
Pencil edit: correct list indentation
1 parent d279ba2 commit f20cb5b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/openshift/howto-deploy-java-liberty-app.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -201,15 +201,15 @@ In the sample application, we've prepared Dockerfile-local and Dockerfile-wlp-lo
201201

202202
1. Start the application in `liberty:devc` mode
203203

204-
```bash
205-
cd <path-to-your-repo>/open-liberty-on-aro/3-integration/connect-db/mysql
206-
207-
# If you are running with Open Liberty
208-
mvn liberty:devc -Ddb.server.name=${DB_SERVER_NAME} -Ddb.port.number=${DB_PORT_NUMBER} -Ddb.name=${DB_NAME} -Ddb.user=${DB_USER} -Ddb.password=${DB_PASSWORD} -Ddockerfile=target/Dockerfile-local
204+
```bash
205+
cd <path-to-your-repo>/open-liberty-on-aro/3-integration/connect-db/mysql
206+
207+
# If you are running with Open Liberty
208+
mvn liberty:devc -Ddb.server.name=${DB_SERVER_NAME} -Ddb.port.number=${DB_PORT_NUMBER} -Ddb.name=${DB_NAME} -Ddb.user=${DB_USER} -Ddb.password=${DB_PASSWORD} -Ddockerfile=target/Dockerfile-local
209209

210-
# If you are running with WebSphere Liberty
211-
mvn liberty:devc -Ddb.server.name=${DB_SERVER_NAME} -Ddb.port.number=${DB_PORT_NUMBER} -Ddb.name=${DB_NAME} -Ddb.user=${DB_USER} -Ddb.password=${DB_PASSWORD} -Ddockerfile=target/Dockerfile-wlp-local
212-
```
210+
# If you are running with WebSphere Liberty
211+
mvn liberty:devc -Ddb.server.name=${DB_SERVER_NAME} -Ddb.port.number=${DB_PORT_NUMBER} -Ddb.name=${DB_NAME} -Ddb.user=${DB_USER} -Ddb.password=${DB_PASSWORD} -Ddockerfile=target/Dockerfile-wlp-local
212+
```
213213

214214
1. Verify the application works as expected. You should see a message similar to `[INFO] [AUDIT] CWWKZ0003I: The application javaee-cafe updated in 1.930 seconds.` in the command output if successful. Go to `http://localhost:9080/` in your browser and verify the application is accessible and all functions are working.
215215

0 commit comments

Comments
 (0)