Skip to content

Commit 3ffde44

Browse files
adhramesvivek-sam
authored andcommitted
lint errors fix
1 parent 8727c26 commit 3ffde44

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

OracleSOASuite/dockerfiles/14.1.2.0/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,20 @@ To create the Podman network and run containers, follow these steps:
2626

2727
The containers will be connected using a Podman user-defined network.
2828

29-
#### Create a user-defined network
29+
### Create a user-defined network
3030

3131
In this configuration, the creation of a user-defined network will enable the communication between the containers just using container names. For this setup we will use a user-defined network using bridge driver.
3232

3333
Create a user-defined network using the bridge driver:
3434
``` bash
35-
$ podman network create -d bridge <network name>
35+
`$ podman network create -d bridge <network name>`
3636
```
3737
For example:
3838
``` bash
39-
$ podman network create -d bridge SOANet
39+
`$ podman network create -d bridge SOANet`
4040
```
4141

42-
### 2. Mount a host directory as a data volume
42+
## 2. Mount a host directory as a data volume
4343

4444
Data volumes are designed to persist data, independent of the container’s lifecycle. Podman automatically creates volumes when you specify a volume name with the -v option, without the need to predefine directories on the host. In this project, the volumes will be used to store Database data files and WebLogic Server domain files. These volumes will be automatically created and managed by Podman. The names of the volumes are specified in the podman run commands.
4545
``` bash
@@ -65,7 +65,7 @@ If this command returns a username (which is the first field), you can skip the
6565
$ useradd -u 1000 -g 0 oracle
6666
```
6767

68-
### 3. Create the database
68+
## 3. Create the database
6969

7070
You need to have a running database container or a database running on any machine. The database connection details are required for creating SOA-specific RCU schemas while configuring the SOA domain. While using a 19.3.0.0 CDB/PDB DB, ensure a PDB is used to load the schemas. RCU loading on a CDB is not supported.
7171

@@ -86,11 +86,11 @@ To run the database container to host the RCU schemas:
8686
```
8787
1. Verify that the database is running and healthy. The `STATUS` field should show `healthy` in the output of `podman ps`.
8888

89-
### 4. Obtain the SOA 14.1.2.0 container image
89+
## 4. Obtain the SOA 14.1.2.0 container image
9090

9191
You can either build the SOA image with the `Containerfile` provided or use the already available Oracle SOA Suite (14.1.2.0) image in the [Oracle Container Registry](https://container-registry.oracle.com/ords/ocr/ba/middleware/soasuite).
9292

93-
### 5. Create a container for the Administration Server
93+
## 5. Create a container for the Administration Server
9494

9595
Start a container to launch the Administration Server from the image created using the steps above. The environment variables used to configure the domain are defined in `adminserver.env.list`. Replace in `adminserver.env.list` the values for the Database and WebLogic Server passwords.
9696

@@ -149,7 +149,7 @@ To view the Administration Server logs, enter the following command:
149149
``` bash
150150
$ podman logs -f \<Administration Server container name\>
151151
```
152-
### 6. Create SOA Managed Server containers
152+
## 6. Create SOA Managed Server containers
153153
154154
> **Note**: These steps are required only for the `soa` and `soaosb` domain type.
155155
@@ -218,7 +218,7 @@ Once the Managed Server container is created, you can view the server logs:
218218
``` bash
219219
$ podman logs -f \<Managed Server container name\>
220220
```
221-
### 7. Create Oracle Service Bus Managed Server containers
221+
## 7. Create Oracle Service Bus Managed Server containers
222222
223223
> **Note**: These steps are required only for the `osb` and `soaosb` domain type.
224224
@@ -285,7 +285,7 @@ Once the Managed Server container is created, you can view the server logs:
285285
$ podman logs -f \<Managed Server container name\>
286286
```
287287
288-
### 8. Access the Consoles
288+
## 8. Access the Consoles
289289
Now you can access the following Consoles:
290290
291291
* EM Console at http://\<hostname\>:7001/em with weblogic/welcome1 credentials.
@@ -298,7 +298,7 @@ Now you can access the following Consoles:
298298
299299
> **Note**: In a multinode scenario, you cannot access the `SOA Composer` and `BPM Worklist` application URLs from the `soa-infra` application page.
300300
301-
### 9. Clean up the environment
301+
## 9. Clean up the environment
302302
303303
1. Stop and remove all running containers from the node where the container is running:
304304
``` bash

0 commit comments

Comments
 (0)