Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Commit

Permalink
Merge branch 'master' into feat/file-ownership
Browse files Browse the repository at this point in the history
  • Loading branch information
lholota committed Aug 2, 2021
2 parents dfd28cb + c81a07e commit 50c3b03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repositories{
}

dependencies {
implementation group: 'org.testcontainers', name: 'testcontainers', version: '1.15.3'
implementation group: 'org.testcontainers', name: 'testcontainers', version: '1.16.0'

testImplementation group: 'junit', name: 'junit', version: '4.13.2'
testImplementation group: 'org.mockito', name: 'mockito-core', version :'3.4.6'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public static void before() throws KeyManagementException, NoSuchAlgorithmExcept
.withRelativeFileSystemBind(Paths.get("nginx", "localhost.crt"), "/etc/ssl/certs/localhost.crt")
.withRelativeFileSystemBind(Paths.get("nginx", "localhost.key"), "/etc/ssl/private/localhost.key");

_nginxContainer.addExposedPort(80);
_nginxContainer.addExposedPort(443);

_nginxContainer.start();
Expand Down

0 comments on commit 50c3b03

Please sign in to comment.