mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-25 18:25:03 +00:00
Unbound mysql port to host; made project name an env variable
This commit is contained in:
parent
ab2f0e6251
commit
2ceee13a1f
2 changed files with 18 additions and 5 deletions
14
.env.example
14
.env.example
|
@ -1,3 +1,11 @@
|
|||
#Project Name
|
||||
#Critical when running multiple Zeppelin instances on the same computer.
|
||||
#Must be unique across all project names/folders.
|
||||
#Use a meaningful name so that you remember what it's for 1 year down the line.
|
||||
#If runnning only one Zeppelin instance, or this is your first one, you may leave this blank.
|
||||
#Defaults to "zeppelin_prod" if left blank.
|
||||
PROJECT_NAME=
|
||||
|
||||
# 32 character encryption key
|
||||
KEY=
|
||||
|
||||
|
@ -60,7 +68,9 @@ DOCKER_PROD_DOMAIN=
|
|||
DOCKER_PROD_WEB_PORT=443
|
||||
# The MySQL database running in the container is exposed to the host on this port,
|
||||
# allowing access with database tools such as DBeaver
|
||||
DOCKER_PROD_MYSQL_PORT=3001
|
||||
# Defaults to 3306 if left blank.
|
||||
# If you need to access your database from host/outside, follow the instructions in docker-compose.production.yml as well.
|
||||
DOCKER_PROD_MYSQL_PORT=
|
||||
# Password for the Zeppelin database user
|
||||
DOCKER_PROD_MYSQL_PASSWORD=
|
||||
# Password for the MySQL root user
|
||||
|
@ -75,4 +85,4 @@ DOCKER_PROD_MYSQL_ROOT_PASSWORD=
|
|||
|
||||
#nginx-proxy related
|
||||
LETSENCRYPT_EMAIL=
|
||||
DEBUG=
|
||||
DEBUG=
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue