2019-10-29 20:54:47 +00:00
|
|
|
package main
|
|
|
|
|
2020-05-02 05:06:39 +00:00
|
|
|
// OutputDir the output directory where the built version of Authelia is located.
|
2019-10-29 20:54:47 +00:00
|
|
|
var OutputDir = "dist"
|
|
|
|
|
2020-05-02 05:06:39 +00:00
|
|
|
// DockerImageName the official name of Authelia docker image.
|
2019-12-24 02:14:52 +00:00
|
|
|
var DockerImageName = "authelia/authelia"
|
2019-10-29 20:54:47 +00:00
|
|
|
|
2020-05-02 05:06:39 +00:00
|
|
|
// IntermediateDockerImageName local name of the docker image.
|
2019-10-29 20:54:47 +00:00
|
|
|
var IntermediateDockerImageName = "authelia:dist"
|
2020-05-02 16:20:40 +00:00
|
|
|
|
2021-03-29 22:17:19 +00:00
|
|
|
var registries = []string{"docker.io", "ghcr.io"}
|
|
|
|
|
|
|
|
const dockerhub = "docker.io"
|
|
|
|
const ghcr = "ghcr.io"
|
|
|
|
|
2020-05-02 16:20:40 +00:00
|
|
|
const masterTag = "master"
|
|
|
|
const stringFalse = "false"
|
|
|
|
const stringTrue = "true"
|
|
|
|
const webDirectory = "web"
|