$ podman run --rm -it --publish "0.0.0.0:8080:8080" docker.io/guntherrotsch/jaxrs-jar:jib
12:28:17,355 INFO [org.wildfly.jar] (main) WFLYJAR0007: Installed server and application in /tmp/wildfly-bootable-server16817916357726508481, took 939ms
12:28:17,673 INFO [org.wildfly.jar] (main) WFLYJAR0008: Server options: [-b=0.0.0.0, --read-only-server-config=standalone.xml]
12:28:17,789 INFO [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final
12:28:17,799 INFO [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
12:28:17,924 INFO [org.jboss.as] (MSC service thread 1-3) WFLYSRV0049: WildFly Full 26.0.0.Final (WildFly Core 18.0.0.Final) starting
...
12:28:21,441 INFO [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0010: Deployed "jaxrs-jar.war" (runtime-name : "ROOT.war")
12:28:21,476 INFO [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server
12:28:21,478 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 26.0.0.Final (WildFly Core 18.0.0.Final) started in 3799ms - Started 160 of 166 services (33 services are lazy, passive or on-demand)
12:28:21,480 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:9990/management
12:28:21,480 INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0054: Admin console is not enabled
# Testing the application (from different shell window):
$ curl localhost:8080/hello
Hello from Wildfly JAR
$