Skip to content

Commit

Permalink
update test docker versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommi2Day committed Aug 23, 2024
1 parent bfef9c1 commit 55829d3
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 13 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
- common: add StructToMap and StructToString functions
### Changed
- pwlib: refactor gpg gopass test files
- update linter githib-action
### Fixed
- mail: type in setTimeout
- update linter github-action
- mail: setTimeout uses int64
- update test docker image versions

## [v1.14.7 - 2024-08-18]
### Changed
Expand Down
2 changes: 1 addition & 1 deletion dblib/oracle_docker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
// DBPort is the port of the Oracle DB to access
const DBPort = "21522"
const repo = "docker.io/gvenzl/oracle-free"
const repoTag = "23.3-slim"
const repoTag = "23.5-slim"
const containerTimeout = 600

// SYSTEMUSER is the name of the default DBA user
Expand Down
2 changes: 1 addition & 1 deletion dblib/tns_dns_docker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func prepareDNSContainer() (container *dockertest.Resource, err error) {
},
{
Name: "BIND9_VERSION",
Value: "9.18",
Value: "9.20",
},
}
container, err = pool.BuildAndRunWithBuildOptions(
Expand Down
4 changes: 1 addition & 3 deletions dblib/tns_ldap_docker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,8 @@ import (
"github.com/ory/dockertest/v3/docker"
)

// const Ldaprepo = "docker.io/osixia/openldap"
// const LdaprepoTag = "1.5.0"
const Ldaprepo = "docker.io/bitnami/openldap"
const LdaprepoTag = "2.6.7"
const LdaprepoTag = "2.6.8"
const LdapcontainerTimeout = 120

var TnsLdapcontainerName string
Expand Down
2 changes: 1 addition & 1 deletion ldaplib/ldap_docker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
)

const Ldaprepo = "docker.io/bitnami/openldap"
const LdaprepoTag = "2.6.7"
const LdaprepoTag = "2.6.8"
const LdapcontainerTimeout = 120

var ldapcontainerName string
Expand Down
2 changes: 1 addition & 1 deletion maillib/mail_docker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
)

const mailRepo = "docker.io/mailserver/docker-mailserver"
const mailRepoTag = "13.2.0"
const mailRepoTag = "13.3.1"
const smtpPort = 31025
const imapPort = 31143
const sslPort = 31465
Expand Down
2 changes: 1 addition & 1 deletion netlib/dns_docker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func prepareNetlibDNSContainer() (container *dockertest.Resource, err error) {
},
{
Name: "BIND9_VERSION",
Value: "9.18",
Value: "9.20",
},
}
dockerContextDir := test.TestDir + "/docker/dns"
Expand Down
2 changes: 1 addition & 1 deletion test/docker/dns/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BIND_VERSION=9.18
ARG BIND_VERSION=9.20
ARG VENDOR_IMAGE_PREFIX=""
ARG BIND_IMAGE=${VENDOR_IMAGE_PREFIX}docker.io/internetsystemsconsortium/bind9:${BIND_VERSION}
FROM ${BIND_IMAGE}
Expand Down
2 changes: 1 addition & 1 deletion test/docker/oracle-dns/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BIND_VERSION=9.18
ARG BIND_VERSION=9.20
ARG VENDOR_IMAGE_PREFIX=""
ARG BIND_IMAGE=${VENDOR_IMAGE_PREFIX}docker.io/internetsystemsconsortium/bind9:${BIND_VERSION}
FROM ${BIND_IMAGE}
Expand Down

0 comments on commit 55829d3

Please sign in to comment.