Skip to content

Commit

Permalink
#166 expose 9001/tcp in docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om committed May 2, 2019
1 parent b1f52b4 commit 13e8957
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ version in Docker := {
}
defaultLinuxInstallLocation in Docker := "/opt/cortex"
dockerRepository := Some("thehiveproject")
dockerUpdateLatest := !version.value.toUpperCase.contains("RC")
dockerUpdateLatest := !version.value.toUpperCase.contains("RC") && !version.value.contains("SNAPSHOT")
dockerEntrypoint := Seq("/opt/cortex/entrypoint")
dockerExposedPorts := Seq(9000)
dockerExposedPorts := Seq(9001)
mappings in Docker ++= Seq(
file("package/docker/entrypoint") -> "/opt/cortex/entrypoint",
file("package/logback.xml") -> "/etc/cortex/logback.xml",
Expand Down

0 comments on commit 13e8957

Please sign in to comment.