forked from changhiskhan/seldoncloudflow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
target-env.sbt
executable file
·24 lines (24 loc) · 909 Bytes
/
target-env.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
* The `pipelinesDockerRegistry` and `pipelinesDockerRepository` settings specify
* the Docker registry (e.g. hostname) and repository (e.g. path on that host)
* that the Pipelines sbt plugin uses for pushing application Docker images.
*
* Example:
*
* pipelinesDockerRegistry := Some("foo.com")
* pipelinesDockerRepository := Some("bar/baz")
*
* This will cause your application Docker images to be pushed as:
*
* `foo.com/bar/baz/[image name]:[tag]`
*
* In multi-project SBT setups, please prefix both values with `ThisBuild / `, e.g.:
*
* ThisBuild / pipelinesDockerRegistry := Some("foo.com")
* ThisBuild / pipelinesDockerRepository := Some("bar/baz")
*
* The sbt plugin expects you to have logged in to the specified registry using
* the `docker login` command.
*/
ThisBuild / cloudflowDockerRegistry := Some("docker.io")
ThisBuild / cloudflowDockerRepository := Some("lightbend")