0 Replies Latest reply on Feb 1, 2018 3:12 AM by ahmali86

    Bootstrap arquillian without enrichers

    ahmali86

      I would like to able to initialize arquillian container without with the test runner or annotation enrichers.

       

      ```

      @DockerContainer
      Container pingpong = Container.withContainerName("pingpong")

        .fromImage("jonmorehouse/ping-pong")

        .withPortBinding(8080)

        .build();
      ```

      Is there a sequence to constructors I can call to get a initialized Container object without linking it an arquillian runner ?