Skip to content

Commit

Permalink
get docker compose arguments working for lila fishnet
Browse files Browse the repository at this point in the history
  • Loading branch information
schlawg committed Dec 11, 2024
1 parent 2866975 commit 42190b9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ inThisBuild(

lazy val app = project
.in(file("app"))
.enablePlugins(JavaAppPackaging, DockerPlugin)
.settings(
name := "lila-fishnet",
organization := "org.lichess",
Expand Down Expand Up @@ -53,9 +54,11 @@ lazy val app = project
),
Docker / packageName := "lichess-org/lila-fishnet",
Docker / maintainer := "lichess.org",
Docker / dockerRepository := Some("ghcr.io")
Docker / dockerRepository := Some("ghcr.io"),
Universal / javaOptions := Seq(
"-J-Dconfig.override_with_env_vars=true"
)
)
.enablePlugins(JavaAppPackaging, DockerPlugin)

lazy val root = project
.in(file("."))
Expand Down

0 comments on commit 42190b9

Please sign in to comment.