This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- ssh root@ip | |
- vel - public key | |
- docker ps -> make sure no running images | |
- git clone url of app from GitHub | |
- cd microservices-demo | |
- cd deploy | |
- cd docker-compose (where we have docker-compose.yml) | |
- docker-compose up -d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Select servlet with docker -> get ip of virtual machine | |
- ssh root@[ip of virtual machine] | |
- docker run -p 8080:8080 -v /var/run/docker.sock:/var/run/docker.sock -v jenkins-data:/var/jenkins_home jenkinsci/blueocean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://gist.github.com/BorisOsipov/16a1ac309f0f9acd9ee34ac50fc0b45f | |
@ParametersAreNonnullByDefault | |
public class ElementWithinViewportCondition extends Condition { | |
public ElementWithinViewportCondition() { | |
super("visible"); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Custom Extension which executes code only once before all tests are started and after all tests finished. | |
* This is temporary solution until https://github.com/junit-team/junit5/issues/456 will not be released | |
*/ | |
public class SystemSetupExtension implements BeforeAllCallback, ExtensionContext.Store.CloseableResource { | |
private static boolean systemReady = false; | |
/** |
NewerOlder