We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In my standalone.xml I have the path to the keystore defined and the password which loads the server perfectly fine.
But when I request SAML auth I get a nullpointer in regards to the keystore file.
Any help would be appreciated.
***********Dockerfile FROM jboss/wildfly COPY standalone.xml /opt/jboss/wildfly/standalone/configuration/ COPY my1.cer /opt/jboss/wildfly/standalone/configuration/certs COPY my3.jks /opt/jboss/wildfly/standalone/configuration/keystore COPY my2.cer /opt/jboss/wildfly/standalone/configuration/certs
RUN /opt/jboss/wildfly/bin/add-user.sh admin Admin#70365 --silent CMD ["/opt/jboss/wildfly/bin/standalone.sh", "-b", "0.0.0.0", "-bmanagement", "0.0.0.0"]
USER root RUN chown jboss:jboss /opt/jboss/wildfly/standalone/deployments/* USER jboss COPY my4.war /opt/jboss/wildfly/standalone/deployments/
*****Standalone.xml
The text was updated successfully, but these errors were encountered:
Is this issue still happening?
Sorry, something went wrong.
No branches or pull requests
In my standalone.xml I have the path to the keystore defined and the password which loads the server perfectly fine.
But when I request SAML auth I get a nullpointer in regards to the keystore file.
Any help would be appreciated.
***********Dockerfile
FROM jboss/wildfly
COPY standalone.xml /opt/jboss/wildfly/standalone/configuration/
COPY my1.cer /opt/jboss/wildfly/standalone/configuration/certs
COPY my3.jks /opt/jboss/wildfly/standalone/configuration/keystore
COPY my2.cer /opt/jboss/wildfly/standalone/configuration/certs
RUN /opt/jboss/wildfly/bin/add-user.sh admin Admin#70365 --silent
CMD ["/opt/jboss/wildfly/bin/standalone.sh", "-b", "0.0.0.0", "-bmanagement", "0.0.0.0"]
USER root
RUN chown jboss:jboss /opt/jboss/wildfly/standalone/deployments/*
USER jboss
COPY my4.war /opt/jboss/wildfly/standalone/deployments/
*****Standalone.xml
The text was updated successfully, but these errors were encountered: