Merge branch 'master' into mailparse
This commit is contained in:
45
env-example
45
env-example
@ -38,7 +38,7 @@ COMPOSE_PROJECT_NAME=laradock
|
||||
### PHP Version ###########################################
|
||||
|
||||
# Select a PHP version of the Workspace and PHP-FPM containers (Does not apply to HHVM). Accepted values: 7.3 - 7.2 - 7.1 - 7.0 - 5.6
|
||||
PHP_VERSION=7.2
|
||||
PHP_VERSION=7.3
|
||||
|
||||
### Phalcon Version ###########################################
|
||||
|
||||
@ -106,6 +106,7 @@ WORKSPACE_INSTALL_XSL=false
|
||||
WORKSPACE_INSTALL_IMAP=false
|
||||
WORKSPACE_INSTALL_MONGO=false
|
||||
WORKSPACE_INSTALL_AMQP=false
|
||||
WORKSPACE_INSTALL_CASSANDRA=false
|
||||
WORKSPACE_INSTALL_MSSQL=false
|
||||
WORKSPACE_INSTALL_DRUSH=false
|
||||
WORKSPACE_DRUSH_VERSION=8.1.17
|
||||
@ -162,6 +163,7 @@ PHP_FPM_INSTALL_PHPDBG=false
|
||||
PHP_FPM_INSTALL_IMAP=false
|
||||
PHP_FPM_INSTALL_MONGO=false
|
||||
PHP_FPM_INSTALL_AMQP=false
|
||||
PHP_FPM_INSTALL_CASSANDRA=false
|
||||
PHP_FPM_INSTALL_MSSQL=false
|
||||
PHP_FPM_INSTALL_SSH2=false
|
||||
PHP_FPM_INSTALL_SOAP=false
|
||||
@ -207,6 +209,8 @@ PHP_WORKER_INSTALL_SWOOLE=false
|
||||
PHP_WORKER_INSTALL_TAINT=false
|
||||
PHP_WORKER_INSTALL_FFMPEG=false
|
||||
PHP_WORKER_INSTALL_GMP=false
|
||||
PHP_WORKER_INSTALL_CASSANDRA=false
|
||||
PHP_WORKER_INSTALL_REDIS=false
|
||||
|
||||
PHP_WORKER_PUID=1000
|
||||
PHP_WORKER_PGID=1000
|
||||
@ -221,6 +225,11 @@ NGINX_PHP_UPSTREAM_CONTAINER=php-fpm
|
||||
NGINX_PHP_UPSTREAM_PORT=9000
|
||||
NGINX_SSL_PATH=./nginx/ssl/
|
||||
|
||||
### LARAVEL_HORIZON ################################################
|
||||
|
||||
LARAVEL_HORIZON_INSTALL_SOCKETS=false
|
||||
LARAVEL_HORIZON_INSTALL_PHPREDIS=true
|
||||
|
||||
### APACHE ################################################
|
||||
|
||||
APACHE_HOST_HTTP_PORT=80
|
||||
@ -271,6 +280,7 @@ MSSQL_PORT=1433
|
||||
|
||||
### MARIADB ###############################################
|
||||
|
||||
MARIADB_VERSION=latest
|
||||
MARIADB_DATABASE=default
|
||||
MARIADB_USER=default
|
||||
MARIADB_PASSWORD=secret
|
||||
@ -732,3 +742,36 @@ SONARQUBE_POSTGRES_HOST=postgres
|
||||
SONARQUBE_POSTGRES_DB=sonar
|
||||
SONARQUBE_POSTGRES_USER=sonar
|
||||
SONARQUBE_POSTGRES_PASSWORD=sonarPass
|
||||
|
||||
### CASSANDRA ################################################
|
||||
|
||||
# Cassandra Version, supported tags can be found at https://hub.docker.com/r/bitnami/cassandra/
|
||||
CASSANDRA_VERSION=latest
|
||||
# Inter-node cluster communication port. Default: 7000
|
||||
CASSANDRA_TRANSPORT_PORT_NUMBER=7000
|
||||
# JMX connections port. Default: 7199
|
||||
CASSANDRA_JMX_PORT_NUMBER=7199
|
||||
# Client port. Default: 9042.
|
||||
CASSANDRA_CQL_PORT_NUMBER=9042
|
||||
# Cassandra user name. Defaults: cassandra
|
||||
CASSANDRA_USER=cassandra
|
||||
# Password seeder will change the Cassandra default credentials at initialization. In clusters, only one node should be marked as password seeder. Default: no
|
||||
CASSANDRA_PASSWORD_SEEDER=no
|
||||
# Cassandra user password. Default: cassandra
|
||||
CASSANDRA_PASSWORD=cassandra
|
||||
# Number of tokens for the node. Default: 256.
|
||||
CASSANDRA_NUM_TOKENS=256
|
||||
# Hostname used to configure Cassandra. It can be either an IP or a domain. If left empty, it will be resolved to the machine IP.
|
||||
CASSANDRA_HOST=
|
||||
# Cluster name to configure Cassandra.. Defaults: My Cluster
|
||||
CASSANDRA_CLUSTER_NAME="My Cluster"
|
||||
# : Hosts that will act as Cassandra seeds. No defaults.
|
||||
CASSANDRA_SEEDS=
|
||||
# Snitch name (which determines which data centers and racks nodes belong to). Default SimpleSnitch
|
||||
CASSANDRA_ENDPOINT_SNITCH=SimpleSnitch
|
||||
# Enable the thrift RPC endpoint. Default :true
|
||||
CASSANDRA_ENABLE_RPC=true
|
||||
# Datacenter name for the cluster. Ignored in SimpleSnitch endpoint snitch. Default: dc1.
|
||||
CASSANDRA_DATACENTER=dc1
|
||||
# Rack name for the cluster. Ignored in SimpleSnitch endpoint snitch. Default: rack1.
|
||||
CASSANDRA_RACK=rack1
|
||||
|
Reference in New Issue
Block a user