forked from aganse/docker_mlflow_db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
47 lines (39 loc) · 1.28 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# Authentication
#
# HTTPS certificate validation, enter your domains/IPs
MLFLOW_SERVER_SSL_CN="example.com"
MLFLOW_SERVER_SSL_SAN="DNS:example.com,IP:127.0.0.1"
# HTTP Basic Auth, authenticates user
MLFLOW_SERVER_USER=mlflow
# Escape the following password or use only alphanumeric chars
MLFLOW_SERVER_PASS=12345
# The following should be an IP or domain resolvable from the computers
# you plan on using mlflow on or the Internet.
# You can get a free domain from https://www.freenom.com/
MLFLOW_ARTIFACT_URI=127.0.0.1
MLFLOW_ARTIFACT_USER=mlflow
# Escape the following password or use only alphanumeric chars
MLFLOW_ARTIFACT_PASS=12345
#
# Ports
#
# Expose auth port to clearnet
# use noauth internally to skip login, ex. with ssh port forwarding
MLFLOW_SERVER_PORT_NOAUTH=5000
MLFLOW_SERVER_PORT_AUTH=80
MLFLOW_SERVER_PORT_AUTH_SSL=443
# The artifact port points to an ssh container that has access to only
# to the artifact directory and uses the provided credentials.
# Can't use 22 because it's assumed you're using already with a properly secured ssh server
MLFLOW_ARTIFACT_PORT=23
#
# Dirs
#
MLFLOW_SSL_CERT_DIR=./cert
MLFLOW_BACKEND_DIR=./backend
MLFLOW_ARTIFACT_DIR=./artifacts
# Replace with your own to be able to edit files created by mlflow
# echo "$UID,$GID"
DOCKER_UID=0
DOCKER_GID=0