Skip to content

Commit

Permalink
use older version of dynamodb docker image (#60)
Browse files Browse the repository at this point in the history
* use older version of dynamodb docker image

* Update IntegSpec.scala
  • Loading branch information
pjfanning authored Jul 13, 2023
1 parent 9c48803 commit 4005367
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
dynamodb:
image: amazon/dynamodb-local
image: amazon/dynamodb-local:1.22.0
ports:
- '8000:8000' #DDB
environment:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import org.testcontainers.containers.wait.strategy.HttpWaitStrategy
trait IntegSpec extends ForAllTestContainer { self: Suite =>
// TODO: Use dynamic ports. This is a annoying to do as the actor system is init prior to beforeAll.
override val container: FixedHostPortGenericContainer = FixedHostPortGenericContainer(
"amazon/dynamodb-local:latest",
"amazon/dynamodb-local:1.22.0",
exposedContainerPort = 8000,
exposedHostPort = 8888,
waitStrategy = new HttpWaitStrategy().forPath("/").forStatusCode(400))
Expand Down

0 comments on commit 4005367

Please sign in to comment.