🔧 Add a default Flower password (#682)
This commit is contained in:

committed by
GitHub

parent
6d5db02b35
commit
6adafdc13d
2
.env
2
.env
@@ -37,7 +37,7 @@ PGADMIN_LISTEN_PORT=5050
|
|||||||
SENTRY_DSN=
|
SENTRY_DSN=
|
||||||
|
|
||||||
# Flower
|
# Flower
|
||||||
FLOWER_BASIC_AUTH=
|
FLOWER_BASIC_AUTH=admin:changethis
|
||||||
|
|
||||||
# Configure these with your own Docker registry images
|
# Configure these with your own Docker registry images
|
||||||
DOCKER_IMAGE_BACKEND=backend
|
DOCKER_IMAGE_BACKEND=backend
|
||||||
|
@@ -157,6 +157,7 @@ The input variables, with their default values (some auto generated) are:
|
|||||||
- `pgadmin_default_user`: (default: `"admin"`) The default user for pgAdmin, you can set it later in .env.
|
- `pgadmin_default_user`: (default: `"admin"`) The default user for pgAdmin, you can set it later in .env.
|
||||||
- `pgadmin_default_password`: (default: `"changethis"`) The default user password for pgAdmin, stored in .env.
|
- `pgadmin_default_password`: (default: `"changethis"`) The default user password for pgAdmin, stored in .env.
|
||||||
- `sentry_dsn`: (default: "") The DSN for Sentry, if you are using it, you can set it later in .env.
|
- `sentry_dsn`: (default: "") The DSN for Sentry, if you are using it, you can set it later in .env.
|
||||||
|
- `flower_basic_auth`: (default: `"admin:changethis"`) The basic auth for Flower, you can set it later in .env.
|
||||||
|
|
||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
|
@@ -69,6 +69,11 @@ sentry_dsn:
|
|||||||
help: The DSN for Sentry, if you are using it, you can set it later in .env
|
help: The DSN for Sentry, if you are using it, you can set it later in .env
|
||||||
default: ""
|
default: ""
|
||||||
|
|
||||||
|
flower_basic_auth:
|
||||||
|
type: str
|
||||||
|
help: The basic auth for Flower, you can set it later in .env
|
||||||
|
default: "admin:changethis"
|
||||||
|
|
||||||
_exclude:
|
_exclude:
|
||||||
# Global
|
# Global
|
||||||
- .vscode
|
- .vscode
|
||||||
|
@@ -143,7 +143,7 @@ You can set several variables, like:
|
|||||||
* `PGADMIN_DEFAULT_EMAIL`: The default email for pgAdmin.
|
* `PGADMIN_DEFAULT_EMAIL`: The default email for pgAdmin.
|
||||||
* `PGADMIN_DEFAULT_PASSWORD`: The default password for pgAdmin.
|
* `PGADMIN_DEFAULT_PASSWORD`: The default password for pgAdmin.
|
||||||
* `SENTRY_DSN`: The DSN for Sentry, if you are using it.
|
* `SENTRY_DSN`: The DSN for Sentry, if you are using it.
|
||||||
* `FLOWER_BASIC_AUTH`: The HTTP Basic Auth for Flower.
|
* `FLOWER_BASIC_AUTH`: The HTTP Basic Auth for Flower, like `admin:changethis`.
|
||||||
|
|
||||||
### Generate secret keys
|
### Generate secret keys
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user