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 ?