Skip to content

Commit aac628d

Browse files
authored
Merge pull request #383 from oracle/issue-#380-samples-typos
Issue #380 - Fixed typos in samples for docker-run and docker-build d…
2 parents 2967849 + 8d78c65 commit aac628d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

samples/docker-domain/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Another option is to use the WDT `discoverDomain` tool to create a model. This p
1414

1515
The sample model is accompanied by a properties file whose values can be changed to customize a domain. The model's variable tokens are replaced with values from 'simple-topology.properties' when building the docker image. The properties files can be created and modified using a text editor. Select variables in the properties file are used by the Dockerfile during the build to persist ENV variables and expose ports in the image.
1616

17-
Care should be taken to secure the credentials that are present in the model. The ADMIN credential attributes in the sample model have a file token referencing a special property file. Each special property file must only contain a single property and can be created and modified using a text editor. The sample includes the files adminuser.properties and the adminpass.properties in the properties/docker_build directory.
17+
Care should be taken to secure the credentials that are present in the model. The ADMIN credential attributes in the sample model have a file token referencing a special property file. Each special property file must only contain a single property and can be created and modified using a text editor. The sample includes the files adminuser.properties and the adminpass.properties in the properties/docker-build directory.
1818

1919
See the README file for more information on using property and file tokens in the WDT model.
2020

@@ -99,15 +99,15 @@ The Admin Server and each Managed Server are run in containers from this build i
9999

100100
To start the containerized Administration Server, run:
101101

102-
$ docker run -d --name wlsadmin --hostname wlsadmin -p 7001:7001 -v <sample-directory>/properties/docker_run:/u01/oracle/properties 12213-domain-wdt
102+
$ docker run -d --name wlsadmin --hostname wlsadmin -p 7001:7001 -v <sample-directory>/properties/docker-run:/u01/oracle/properties 12213-domain-wdt
103103

104104
To start a containerized Managed Server (managed-server-1) to self-register with the Administration Server above, run:
105105

106-
$ docker run -d --name managed-server-1 --link wlsadmin:wlsadmin -p 9001:9001 -v <sample-directory>/properties/docker_run:/u01/oracle/properties -e MANAGED_SERVER_NAME=managed-server-1 12213-domain-wdt startManagedServer.sh
106+
$ docker run -d --name managed-server-1 --link wlsadmin:wlsadmin -p 9001:9001 -v <sample-directory>/properties/docker-run:/u01/oracle/properties -e MANAGED_SERVER_NAME=managed-server-1 12213-domain-wdt startManagedServer.sh
107107

108108
To start an additional Managed Server (in this example managed-server-2), run:
109109

110-
$ docker run -d --name managed-server-2 --link wlsadmin:wlsadmin -p 9002:9001 -v <sample-directory>/properties/docker_run/:/u01/oracle/properties -e MANAGED_SERVER_NAME=managed-server-2 12213-domain-wdt startManagedServer.sh
110+
$ docker run -d --name managed-server-2 --link wlsadmin:wlsadmin -p 9002:9001 -v <sample-directory>/properties/docker-run/:/u01/oracle/properties -e MANAGED_SERVER_NAME=managed-server-2 12213-domain-wdt startManagedServer.sh
111111

112112
The above scenario from this sample will give you a WebLogic domain with a dynamic cluster set up on a single host environment.
113113

0 commit comments

Comments
 (0)