Skip to content

Commit

Permalink
Move static config in modules to constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
mrotteveel committed Aug 2, 2020
1 parent 039d7d8 commit d73893a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGES.md
Expand Up @@ -4,7 +4,9 @@ Version History
1.0.4
-----

- Update org.testcontainers:jdbc to 1.14.3
- Update org.testcontainers:jdbc to 1.14.3
- Move static config in modules to constructor (see also https://github.com/testcontainers/testcontainers-java/pull/2473)


1.0.3
-----
Expand Down
Expand Up @@ -34,11 +34,11 @@ public FirebirdContainer() {

public FirebirdContainer(String dockerImageName) {
super(dockerImageName);
addExposedPort(FIREBIRD_PORT);
}

@Override
protected void configure() {
addExposedPort(FIREBIRD_PORT);
addEnv("TZ", timeZone);
addEnv("FIREBIRD_DATABASE", databaseName);

Expand Down

0 comments on commit d73893a

Please sign in to comment.