@@ -17,19 +17,16 @@ When you have installed docker desktop please ensure you configure following ite
1717
1818Everything else you can leave as defaults.
1919
20- ##Running AEM Author using Docker Container with Debugging Enabled
20+ ##Running AEM 6.5.0 Author using Docker Container with Debugging Enabled
21+
22+ Port: 4502
23+ Debug Port: 30303
24+ URL:http://localhost:4502
2125
2226If you would like to start and run new instance of AEM using Docker use the following command:
2327
2428``` bash
25- docker run --name author \
26- -e" TZ=Australia/Sydney" \
27- -e" AEM_JVM_OPTS=-server -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=58242 -Xms1024m -Xmx1024m -XX:MaxDirectMemorySize=256M -XX:+CMSClassUnloadingEnabled -Djava.awt.headless=true -Dorg.apache.felix.http.host=0.0.0.0" \
28- -p4502:8080 \
29- -p30303:58242 -d \
30- -v~ /aemdesign-docker/author/crx-quickstart/repository:/aem/crx-quickstart/repository \
31- -v~ /aemdesign-docker/author/crx-quickstart/logs:/aem/crx-quickstart/logs \
32- aemdesign/aem:6.5.0
29+ docker run --name author -e" TZ=Australia/Sydney" -e" AEM_JVM_OPTS=-server -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=58242 -Xms1024m -Xmx1024m -XX:MaxDirectMemorySize=256M -XX:+CMSClassUnloadingEnabled -Djava.awt.headless=true -Dorg.apache.felix.http.host=0.0.0.0" -p4502:8080 -p30303:58242 -d -v~ /aemdesign-docker/author/crx-quickstart/repository:/aem/crx-quickstart/repository -v~ /aemdesign-docker/author/crx-quickstart/logs:/aem/crx-quickstart/logs aemdesign/aem:6.5.0
3330```
3431
3532This will start a new instance and will mount internal repository content in a subfolder``` ~/aemdesign-docker/author ``` of your home directory.
@@ -52,28 +49,39 @@ If you find your self wanting to checkout internal container setup you can get b
5249dockerexec -it author bash
5350```
5451
52+ ##Running AEM 6.5.0 Publish with Debugging Enabled
5553
56-
57- ##Running AEM Publish using Docker Container with Debugging Enabled
54+ Port: 4503
55+ Debug Port: 30304
56+ URL:http://localhost:4503
5857
5958``` bash
60- docker run --name aem64-publish \
61- -e" TZ=Australia/Sydney" \
62- -e" AEM_JVM_OPTS=-server -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=58242 -Xms1024m -Xmx1024m -XX:MaxDirectMemorySize=256M -XX:+CMSClassUnloadingEnabled -Djava.awt.headless=true -Dorg.apache.felix.http.host=0.0.0.0" \
63- -e" AEM_RUNMODE=-Dsling.run.modes=publish,crx3,crx3tar,nosamplecontent" \
64- -p4503:8080 \
65- -p30304:58242 -d \
66- -v~ /aemdesign-docker/publish/crx-quickstart/repository:/aem/crx-quickstart/repository \
67- -v~ /aemdesign-docker/publish/crx-quickstart/logs:/aem/crx-quickstart/logs \
68- aemdesign/aem:6.5.0
59+ docker run --name publish -e" TZ=Australia/Sydney" -e" AEM_JVM_OPTS=-server -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=58242 -Xms1024m -Xmx1024m -XX:MaxDirectMemorySize=256M -XX:+CMSClassUnloadingEnabled -Djava.awt.headless=true -Dorg.apache.felix.http.host=0.0.0.0" -e" AEM_RUNMODE=-Dsling.run.modes=publish,crx3,crx3tar,nosamplecontent" -p4503:8080 -p30304:58242 -d -v~ /aemdesign-docker/publish/crx-quickstart/repository:/aem/crx-quickstart/repository -v~ /aemdesign-docker/publish/crx-quickstart/logs:/aem/crx-quickstart/logs aemdesign/aem:6.5.0
6960```
7061
71- ##Start AEM 6.4.8.4
62+ ##Start AEM 6.4.8.4 Author with Debugging Enabled
63+
64+ Port: 4502
65+ Debug Port: 30303
66+ URL:http://localhost:4502
7267
7368This container will run until stopped and will restart when ever you reboot your pc, this is done using` --restart unless-stopped ` setting.
7469
7570``` bash
7671docker run --name author6484 -e" TZ=Australia/Sydney" -e" AEM_RUNMODE=-Dsling.run.modes=author,crx3,crx3tar,forms,localdev" -e" AEM_JVM_OPTS=-server -Xms248m -Xmx2524m -XX:MaxDirectMemorySize=256M -XX:+CMSClassUnloadingEnabled -Djava.awt.headless=true -Dorg.apache.felix.http.host=0.0.0.0 -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=58242,suspend=n" -p4502:8080 -p30303:58242 --restart unless-stopped -d aemdesign/aem:6.4.8.4
7772```
7873
79- :heart : :heart : :heart :
74+ ##Start AEM SDK - 2021.3.5087 Author with Debugging Enabled
75+
76+ Port: 4502
77+ Debug Port: 30303
78+ URL:http://localhost:4502
79+
80+ This container will run until stopped and will restart when ever you reboot your pc, this is done using` --restart unless-stopped ` setting.
81+
82+ ``` bash
83+ docker run --name authorsdk5087 -e" TZ=Australia/Sydney" -e" AEM_RUNMODE=-Dsling.run.modes=author,crx3,crx3tar,forms,localdev" -e" AEM_JVM_OPTS=-server -Xms248m -Xmx1524m -XX:MaxDirectMemorySize=256M -XX:+CMSClassUnloadingEnabled -Djava.awt.headless=true -Dorg.apache.felix.http.host=0.0.0.0 -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=58242,suspend=n -XX:+UseParallelGC --add-opens=java.desktop/com.sun.imageio.plugins.jpeg=ALL-UNNAMED --add-opens=java.base/sun.net.www.protocol.jrt=ALL-UNNAMED --add-opens=java.naming/javax.naming.spi=ALL-UNNAMED --add-opens=java.xml/com.sun.org.apache.xerces.internal.dom=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/jdk.internal.loader=ALL-UNNAMED --add-opens=java.base/java.net=ALL-UNNAMED -Dnashorn.args=--no-deprecation-warning" -p4502:8080 -p30303:58242 -d aemdesign/aem:sdk-2021.3.5087
84+ ```
85+
86+
87+ :heart : :heart : :heart :