Skip to content

Commit

Permalink
chore: bump container versions in tests and example setups
Browse files Browse the repository at this point in the history
Signed-off-by: nscuro <nscuro@protonmail.com>
  • Loading branch information
nscuro committed Sep 4, 2023
1 parent 13cacd6 commit 74075df
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions examples/deployment/minimal/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"

services:
dtrack:
image: dependencytrack/bundled:4.5.0@sha256:eb8d446d41a03bae46aa9a68692de08ba62946994563287c100d245471a09812
image: dependencytrack/bundled:4.8.2
ports:
- "127.0.0.1:8080:8080"
restart: unless-stopped
Expand All @@ -22,7 +22,7 @@ services:
restart: unless-stopped

opa:
image: openpolicyagent/opa:0.41.0-rootless@sha256:530cbe6d3e3f99966aba8563e5c4a63e4f89ff70ece959b57fd617fa0dca70b6
image: openpolicyagent/opa:0.56.0-rootless
command:
- run
- --server
Expand Down
6 changes: 3 additions & 3 deletions examples/deployment/with-bundleserver/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3"

services:
dtrack:
image: dependencytrack/bundled:4.5.0@sha256:eb8d446d41a03bae46aa9a68692de08ba62946994563287c100d245471a09812
image: dependencytrack/bundled:4.8.2
ports:
- "127.0.0.1:8080:8080"
restart: unless-stopped
Expand All @@ -22,7 +22,7 @@ services:
restart: unless-stopped

opa:
image: openpolicyagent/opa:0.41.0-rootless@sha256:530cbe6d3e3f99966aba8563e5c4a63e4f89ff70ece959b57fd617fa0dca70b6
image: openpolicyagent/opa:0.56.0-rootless
command:
- run
- --server
Expand All @@ -40,7 +40,7 @@ services:
restart: unless-stopped

nginx:
image: nginx:1.22.0-alpine@sha256:f335d7436887b39393409261603fb248e0c385ec18997d866dd44f7e9b621096
image: nginx:1.25.2-alpine
volumes:
- "../../bundles:/usr/share/nginx/html/bundles:ro"
restart: unless-stopped
2 changes: 1 addition & 1 deletion internal/opa/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func TestClient_Decision(t *testing.T) {

func setupOPA(t *testing.T) string {
req := testcontainers.ContainerRequest{
Image: "openpolicyagent/opa:0.40.0-rootless",
Image: "openpolicyagent/opa:0.56.0-rootless",
Cmd: []string{"run", "--server"},
ExposedPorts: []string{"8181/tcp"},
WaitingFor: wait.ForLog("Initializing server"),
Expand Down

0 comments on commit 74075df

Please sign in to comment.