diff --git a/build.sbt b/build.sbt index 959c71a6f..37af0e603 100644 --- a/build.sbt +++ b/build.sbt @@ -100,11 +100,11 @@ lazy val riffraff = project Test / fork := false, Test / testOptions += Tests.Setup(_ => { println(s"Starting Docker containers for tests") - "docker-compose up -d".! + "docker compose up -d".! }), Test / testOptions += Tests.Cleanup(_ => { println(s"Stopping Docker containers for tests") - "docker-compose rm --stop --force".! + "docker compose rm --stop --force".! }), Assets / LessKeys.less / includeFilter := "*.less", Assets / pipelineStages := Seq(digest) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 691d6fcac..941a5d0a1 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -6,7 +6,7 @@ object Dependencies { object Versions { val aws = "2.25.70" val jackson = "2.17.2" - val awsRds = "1.12.766" + val awsRds = "1.12.767" val enumeratumPlay = "1.8.1" } diff --git a/script/start b/script/start index a81058689..30a42aaf7 100755 --- a/script/start +++ b/script/start @@ -9,7 +9,7 @@ for arg in "$@"; do fi done -docker-compose up -d +docker compose up -d if [ "$IS_DEBUG" == true ] ; then ./sbt-debug "project riffraff" "run" diff --git a/script/test b/script/test index 9564dbb35..78ec4bed7 100755 --- a/script/test +++ b/script/test @@ -9,7 +9,7 @@ for arg in "$@"; do fi done -docker-compose up -d +docker compose up -d if [ "$IS_DEBUG" == true ] ; then ./sbt-debug test