Skip to content

Instantly share code, notes, and snippets.

@artsok
Created January 30, 2020 14:01
Show Gist options
  • Save artsok/e355fa7498edb9f2e4a88e96c77c4880 to your computer and use it in GitHub Desktop.
Save artsok/e355fa7498edb9f2e4a88e96c77c4880 to your computer and use it in GitHub Desktop.
docker_wildfly
FROM jboss/wildfly:15.0.0.Final
EXPOSE 8080
COPY target/springbootwildfly.war /opt/jboss/wildfly/standalone/deployments/
CMD ["/opt/jboss/wildfly/bin/standalone.sh", "-b", "0.0.0.0", "-bmanagement","0.0.0.0"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment