Running Docker for Arquillian

Command Line

  • Docker Command that exposes the ports for attaching IntelliJ and also the console for managing DataSources
    • —rm removes the container upon exit so there won't be a container collision later
    • port 8787 is the debug port configured within the image as it sets up the JAVA_OPTS.
    • port 9990 is the console port for the WildFly container — both manual and automated control
    • port 8080 is where the test itself responds
docker run --rm -p 8787:8787 -p 9990:9990 -p 8080:8080 jboss/wildfly-self-config
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License