mirror of
https://github.com/bitwarden/server.git
synced 2025-06-24 04:38:48 -05:00

* Add environment variable options to quickly start the devcontainer Co-authored-by: tangowithfoxtrot <tangowithfoxtrot@users.noreply.github.com> * Fix DEV_CERT_CONTENTS --------- Co-authored-by: tangowithfoxtrot <tangowithfoxtrot@users.noreply.github.com>
38 lines
1.4 KiB
Plaintext
38 lines
1.4 KiB
Plaintext
COMPOSE_PROJECT_NAME=bitwardenserver
|
|
# Ensure the MSSQL_PASSWORD is complex and follows the password policy defined at
|
|
# https://docs.microsoft.com/en-us/sql/relational-databases/security/password-policy?view=sql-server-ver15
|
|
|
|
# The MSSQL*_PASSWORD variables can be the same value; MSSQL_SA_PASSWORD is used for VS Code devcontainers
|
|
# and MSSQL_PASSWORD is used for docker-compose for traditional dev configurations.
|
|
MSSQL_PASSWORD=SET_A_PASSWORD_HERE_123
|
|
MSSQL_SA_PASSWORD=SET_A_PASSWORD_HERE_123
|
|
MAILCATCHER_PORT=1080
|
|
|
|
# Alternative databases
|
|
POSTGRES_PASSWORD=SET_A_PASSWORD_HERE_123
|
|
MYSQL_ROOT_PASSWORD=SET_A_PASSWORD_HERE_123
|
|
MARIADB_ROOT_PASSWORD=SET_A_PASSWORD_HERE_123
|
|
|
|
# IdP configuration
|
|
# Complete using the values from the Manage SSO page in the web vault
|
|
IDP_SP_ENTITY_ID=http://localhost:51822/saml2
|
|
IDP_SP_ACS_URL=http://localhost:51822/saml2/yourOrgIdHere/Acs
|
|
|
|
# Optional reverse proxy configuration
|
|
# Should match server listen ports in reverse-proxy.conf
|
|
API_PROXY_PORT=4100
|
|
IDENTITY_PROXY_PORT=33756
|
|
|
|
# Optional RabbitMQ configuration
|
|
RABBITMQ_DEFAULT_USER=bitwarden
|
|
RABBITMQ_DEFAULT_PASS=SET_A_PASSWORD_HERE_123
|
|
|
|
# Environment variables that help customize dev container start
|
|
# Without these the dev container will ask these questions in an interactive manner
|
|
# when possible (excluding running in GitHub Codespaces)
|
|
# SETUP_SECRETS_JSON=yes
|
|
# SETUP_AZURITE=yes
|
|
# RUN_MSSQL_MIGRATIONS=yes
|
|
# DEV_CERT_PASSWORD=dev_cert_password_here
|
|
# INSTALL_STRIPE_CLI=no
|