the nxmc-6.1.3.war seems to be a webpage inside the web:6.1.3 container image and not a war file.
podman run --rm -it ghcr.io/netxms/web:6.1.3 sha256sum /var/lib/jetty/webapps/ROOT.war
dbce90cd8dd5c4c802214b4b02e2b5e3d38e4ae0d1b6f12c50acf8357ef7a4da /var/lib/jetty/webapps/ROOT.war
wget https://netxms.com/download/releases/6.1/nxmc-6.1.3.war
sha256sum nxmc-6.1.3.war
bf39902ca64d2ef245f23f5a98f9cd61eb1edf6802cdba0c77ef82d2b7823275 nxmc-6.1.3.war
it seems to work when I build a fixme container containing the nxmc-6.1.3.war
FROM ghcr.io/netxms/web:6.1.3
COPY nxmc-6.1.3.war /var/lib/jetty/webapps/ROOT.war
the nxmc-6.1.3.war seems to be a webpage inside the web:6.1.3 container image and not a war file.
it seems to work when I build a fixme container containing the nxmc-6.1.3.war