File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ To deploy an application, copy the `.war` file file into
2121` $CATALINA_BASE/webapps ` (either during a container build or by bind-mounting
2222the directory), and launch the container using the following command:
2323``` ShellSession
24- $ podman run -d --rm -p 8080:8080 registry.suse.com/suse/tomcat:10
24+ $ podman run -d --rm -p 8080:8080 registry.suse.com/suse/tomcat:latest
2525```
2626
2727The deployed webapp is then accessible via ` http://localhost:8080/$webapp_name ` .
@@ -38,7 +38,7 @@ follows:
3838``` ShellSession
3939$ chmod 0777 /path/to/my/app
4040$ podman run --rm -d -v /path/to/my/app:/usr/share/tomcat/webapps:z \
41- -p 8080:8080 registry.suse.com/suse/tomcat:10
41+ -p 8080:8080 registry.suse.com/suse/tomcat:latest
4242```
4343
4444
@@ -54,7 +54,7 @@ options to the container runtime using the `-e` flag:
5454``` ShellSession
5555$ podman run -it --rm \
5656 -e JAVA_OPTS="-Xmx1024m" -p 8080:8080 \
57- registry.suse.com/suse/tomcat:10
57+ registry.suse.com/suse/tomcat:latest
5858```
5959
6060The image ships with ` CATALINA_HOME ` set to ` /usr/share/tomcat `
You can’t perform that action at this time.
0 commit comments