fix: default env variables from the docker-compose.yml sample

This commit is contained in:
Gareth
2025-08-26 23:57:19 -07:00
parent 4695230317
commit c1c4d218b9

View File

@@ -7,7 +7,11 @@ import (
)
var dockerEnvVarDefaults = map[string]string{
"BACKREST_PORT": "0.0.0.0:9898",
"BACKREST_PORT": "0.0.0.0:9898",
"BACKREST_DATA": "/data",
"BACKREST_CONFIG": "/config/config.json",
"XDG_CACHE_HOME": "/cache",
"TMPDIR": "/tmp",
}
func main() {