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

Commit

Permalink
fix(deps): bump testcontainers from 1.15.3 to 1.16.0 (#55)
Browse files Browse the repository at this point in the history
* fix(deps): bump testcontainers from 1.15.3 to 1.16.0

Bumps [testcontainers](https://github.com/testcontainers/testcontainers-java) from 1.15.3 to 1.16.0.
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.15.3...1.16.0)

---
updated-dependencies:
- dependency-name: org.testcontainers:testcontainers
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix: Explicit port mapping

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Lukas Holota <[email protected]>
  • Loading branch information
dependabot[bot] and lholota committed Aug 2, 2021
1 parent 8374a03 commit c81a07e
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 c81a07e

Please sign in to comment.