2019-10-30 03:54:47 +07:00
|
|
|
package main
|
|
|
|
|
2020-05-02 12:06:39 +07:00
|
|
|
// OutputDir the output directory where the built version of Authelia is located.
|
2019-10-30 03:54:47 +07:00
|
|
|
var OutputDir = "dist"
|
|
|
|
|
2020-05-02 12:06:39 +07:00
|
|
|
// DockerImageName the official name of Authelia docker image.
|
2019-12-24 09:14:52 +07:00
|
|
|
var DockerImageName = "authelia/authelia"
|
2019-10-30 03:54:47 +07:00
|
|
|
|
2020-05-02 12:06:39 +07:00
|
|
|
// IntermediateDockerImageName local name of the docker image.
|
2019-10-30 03:54:47 +07:00
|
|
|
var IntermediateDockerImageName = "authelia:dist"
|
2020-05-02 23:20:40 +07:00
|
|
|
|
2021-03-30 05:17:19 +07:00
|
|
|
var registries = []string{"docker.io", "ghcr.io"}
|
|
|
|
|
|
|
|
const dockerhub = "docker.io"
|
|
|
|
const ghcr = "ghcr.io"
|
|
|
|
|
2020-05-02 23:20:40 +07:00
|
|
|
const masterTag = "master"
|
|
|
|
const stringFalse = "false"
|
|
|
|
const stringTrue = "true"
|
|
|
|
const webDirectory = "web"
|
2021-06-18 11:35:43 +07:00
|
|
|
|
|
|
|
const fmtLDFLAGSX = "-X 'github.com/authelia/authelia/internal/utils.%s=%s'"
|