- Docker Quickstart Terminal Window For Macro
- Docker Quickstart Terminal Window For Mac Os
- Docker Quickstart Terminal Window For Mac Free
Prerequisites
- Docker 1.13.1+
- Docker Compose 1.11.0+
How to use this Docker image
Install Docker Desktop on your Mac. Open the docker.dmg file you downloaded, and drag the Docker app's cartoon whale icon into your Applications folder. Open and run Docker. When you run the Docker app, a little whale icon will appear on the right side of the menubar atop your screen. It'll take a few minutes to get running, and Docker may. If you’re on Mac or Windows, in the last step you installed something called the Docker Quickstart Terminal; open that up now - it should look like a plain shell prompt ($), but really it’s pointing at a linux virtual machine that Docker likes to run in, and this is where you should do everything for the rest of this tutorial unless otherwise noted.
Here're 3 ways to quickly install DolphinScheduler
The First Way: Start a DolphinScheduler by docker-compose (recommended)
In this way, you need to install docker-compose as a prerequisite, please install it yourself according to the rich docker-compose installation guidance on the Internet
For Windows 7-10, you can install Docker Toolbox. For Windows 10 64-bit, you can install Docker Desktop, and pay attention to the system requirements
0. Configure memory not less than 4GB
For Mac user, click Docker Desktop -> Preferences -> Resources -> Memory
For Windows Docker Toolbox user, two items need to be configured:
- Memory: Open Oracle VirtualBox Manager, if you double-click Docker Quickstart Terminal and successfully run Docker Toolbox, you will see a Virtual Machine named
default
. And clickSettings -> System -> Motherboard -> Base Memory
- Port Forwarding: Click
Settings -> Network -> Advanced -> Port forwarding -> Add
.Name
,Host Port
andGuest Port
all fill in12345
, regardless ofHost IP
andGuest IP
For Windows Docker Desktop user
- Hyper-V mode: Click
Docker Desktop -> Settings -> Resources -> Memory
- WSL 2 mode: Refer to WSL 2 utility VM
1. Download the Source Code Package
Please download the source code package apache-dolphinscheduler-1.3.6-src.tar.gz, download address: download
2. Pull Image and Start the Service
For Mac and Linux user, open TerminalFor Windows Docker Toolbox user, open Docker Quickstart TerminalFor Windows Docker Desktop user, open Windows PowerShell
PowerShell should use cd apache-dolphinscheduler-1.3.6-srcdockerdocker-swarm
The PostgreSQL (with username root
, password root
and database dolphinscheduler
) and ZooKeeper services will start by default
3. Login
Visit the Web UI: http://192.168.xx.xx:12345/dolphinscheduler (The local address is http://127.0.0.1:12345/dolphinscheduler)
Docker Quickstart Terminal Window For Macro
The default username is admin
and the default password is dolphinscheduler123
Please refer to the Quick Start
in the chapter User Manual to explore how to use DolphinScheduler
The Second Way: Start via specifying the existing PostgreSQL and ZooKeeper service
In this way, you need to install docker as a prerequisite, please install it yourself according to the rich docker installation guidance on the Internet
1. Basic Required Software (please install by yourself)
- PostgreSQL (8.2.15+)
- ZooKeeper (3.4.6+)
- Docker (1.13.1+)
2. Please login to the PostgreSQL database and create a database named dolphinscheduler
3. Initialize the database, import sql/dolphinscheduler_postgre.sql
to create tables and initial data
4. Download the DolphinScheduler Image
We have already uploaded user-oriented DolphinScheduler image to the Docker repository so that you can pull the image from the docker repository:
5. Run a DolphinScheduler Instance
Note: database username test and password test need to be replaced with your actual PostgreSQL username and password, 192.168.x.x need to be replaced with your relate PostgreSQL and ZooKeeper host IP
6. Login
Same as above
The Third Way: Start a standalone DolphinScheduler server
The following services are automatically started when the container starts:
If you just want to run part of the services in the DolphinScheduler
You can start some services in DolphinScheduler by running the following commands.
- Start a master server, For example:
- Start a worker server (including logger server), For example:
- Start a api server, For example:
- Start a alert server, For example:
Note: You must be specify DATABASE_HOST
, DATABASE_PORT
, DATABASE_DATABASE
, DATABASE_USERNAME
, DATABASE_PASSWORD
, ZOOKEEPER_QUORUM
when start a standalone dolphinscheduler server.
Environment Variables
The Docker container is configured through environment variables, and the Appendix-Environment Variables lists the configurable environment variables of the DolphinScheduler and their default values
Especially, it can be configured through the environment variable configuration file config.env.sh
in Docker Compose and Docker Swarm
Support Matrix
Type | Support | Notes |
---|---|---|
Shell | Yes | |
Python2 | Yes | |
Python3 | Indirect Yes | Refer to FAQ |
Hadoop2 | Indirect Yes | Refer to FAQ |
Hadoop3 | Not Sure | Not tested |
Spark-Local(client) | Indirect Yes | Refer to FAQ |
Spark-YARN(cluster) | Indirect Yes | Refer to FAQ |
Spark-Standalone(cluster) | Not Yet | |
Spark-Kubernetes(cluster) | Not Yet | |
Flink-Local(local>=1.11) | Not Yet | Generic CLI mode is not yet supported |
Flink-YARN(yarn-cluster) | Indirect Yes | Refer to FAQ |
Flink-YARN(yarn-session/yarn-per-job/yarn-application>=1.11) | Not Yet | Generic CLI mode is not yet supported |
Flink-Standalone(default) | Not Yet | |
Flink-Standalone(remote>=1.11) | Not Yet | Generic CLI mode is not yet supported |
Flink-Kubernetes(default) | Not Yet | |
Flink-Kubernetes(remote>=1.11) | Not Yet | Generic CLI mode is not yet supported |
Flink-NativeKubernetes(kubernetes-session/application>=1.11) | Not Yet | Generic CLI mode is not yet supported |
MapReduce | Indirect Yes | Refer to FAQ |
Kerberos | Indirect Yes | Refer to FAQ |
HTTP | Yes | |
DataX | Indirect Yes | Refer to FAQ |
Sqoop | Indirect Yes | Refer to FAQ |
SQL-MySQL | Indirect Yes | Refer to FAQ |
SQL-PostgreSQL | Yes | |
SQL-Hive | Indirect Yes | Refer to FAQ |
SQL-Spark | Indirect Yes | Refer to FAQ |
SQL-ClickHouse | Indirect Yes | Refer to FAQ |
SQL-Oracle | Indirect Yes | Refer to FAQ |
SQL-SQLServer | Indirect Yes | Refer to FAQ |
SQL-DB2 | Indirect Yes | Refer to FAQ |
FAQ
How to manage DolphinScheduler by docker-compose?
Start, restart, stop or list containers:
Stop containers and remove containers, networks:
Stop containers and remove containers, networks and volumes:
How to view the logs of a container?
List all running containers:
View the logs of a container named docker-swarm_dolphinscheduler-api_1: Holsclaw boat trailer serial number.
How to scale master and worker by docker-compose?
Scale master to 2 instances:
Scale worker to 3 instances:
How to deploy DolphinScheduler on Docker Swarm?
Assuming that the Docker Swarm cluster has been created (If there is no Docker Swarm cluster, please refer to create-swarm)
Start a stack named dolphinscheduler:
List the services in the stack named dolphinscheduler:
Stop and remove the stack named dolphinscheduler:
Remove the volumes of the stack named dolphinscheduler:
How to scale master and worker on Docker Swarm?
Scale master of the stack named dolphinscheduler to 2 instances:
Scale worker of the stack named dolphinscheduler to 3 instances:
How to build a Docker image?
1. Build from the source code (Require Maven 3.3+ & JDK 1.8+)
In Unix-Like, execute in Terminal:
In Windows, execute in cmd or PowerShell:
Please read ./docker/build/hooks/build
./docker/build/hooks/build.bat
script files if you don't understand
2. Build from the binary distribution (Not require Maven 3.3+ & JDK 1.8+)
Please download the binary distribution package apache-dolphinscheduler-1.3.6-bin.tar.gz, download address: download. And put apache-dolphinscheduler-1.3.6-bin.tar.gz into the apache-dolphinscheduler-1.3.6-src/docker/build
directory, execute in Terminal or PowerShell:
PowerShell should use cd apache-dolphinscheduler-1.3.6-src/docker/build
How to add an environment variable for Docker?
If you would like to do additional initialization in an image derived from this one, add one or more environment variables under /root/start-init-conf.sh
, and modify template files in /opt/dolphinscheduler/conf/*.tpl
.
For example, to add an environment variable SECURITY_AUTHENTICATION_TYPE
in /root/start-init-conf.sh
:
and to modify application-api.properties.tpl
template file, add the SECURITY_AUTHENTICATION_TYPE
:
/root/start-init-conf.sh
will dynamically generate config file:
How to use MySQL as the DolphinScheduler's database instead of PostgreSQL?
Because of the commercial license, we cannot directly use the driver of MySQL.
If you want to use MySQL, you can build a new image based on the apache/dolphinscheduler
image as follows.
Download the MySQL driver mysql-connector-java-5.1.49.jar (require
>=5.1.47
)Create a new
Dockerfile
to add MySQL driver:
- Build a new docker image including MySQL driver:
- Modify all
image
fields toapache/dolphinscheduler:mysql-driver
indocker-compose.yml
If you want to deploy dolphinscheduler on Docker Swarm, you need modify docker-stack.yml
Comment the
dolphinscheduler-postgresql
block indocker-compose.yml
Add
dolphinscheduler-mysql
service indocker-compose.yml
(Optional, you can directly use a external MySQL database)Modify DATABASE environment variables in
config.env.sh
If you have added dolphinscheduler-mysql
service in docker-compose.yml
, just set DATABASE_HOST
to dolphinscheduler-mysql
- Run a dolphinscheduler (See How to use this docker image)
How to support MySQL datasource in Datasource manage
?
Because of the commercial license, we cannot directly use the driver of MySQL.
If you want to add MySQL datasource, you can build a new image based on the apache/dolphinscheduler
image as follows.
Download the MySQL driver mysql-connector-java-5.1.49.jar (require
>=5.1.47
)Create a new
Dockerfile
to add MySQL driver:
- Build a new docker image including MySQL driver:
- Modify all
image
fields toapache/dolphinscheduler:mysql-driver
indocker-compose.yml
If you want to deploy dolphinscheduler on Docker Swarm, you need modify docker-stack.yml
Run a dolphinscheduler (See How to use this docker image)
Add a MySQL datasource in
Datasource manage
How to support Oracle datasource in Datasource manage
?
Because of the commercial license, we cannot directly use the driver of Oracle.
If you want to add Oracle datasource, you can build a new image based on the apache/dolphinscheduler
image as follows.
Download the Oracle driver ojdbc8.jar (such as
ojdbc8-19.9.0.0.jar
)Create a new
Dockerfile
to add Oracle driver:
- Build a new docker image including Oracle driver:
- Modify all
image
fields toapache/dolphinscheduler:oracle-driver
indocker-compose.yml
If you want to deploy dolphinscheduler on Docker Swarm, you need modify docker-stack.yml
Run a dolphinscheduler (See How to use this docker image)
Add a Oracle datasource in
Datasource manage
How to support Python 2 pip and custom requirements.txt?
- Create a new
Dockerfile
to install pip:
The command will install the default pip 18.1. If you upgrade the pip, just add one line
- Build a new docker image including pip:
- Modify all
image
fields toapache/dolphinscheduler:pip
indocker-compose.yml
If you want to deploy dolphinscheduler on Docker Swarm, you need modify docker-stack.yml
Run a dolphinscheduler (See How to use this docker image)
Verify pip under a new Python task
How to support Python 3?
- Create a new
Dockerfile
to install Python 3:
The command will install the default Python 3.7.3. If you also want to install pip3, just replace python3
with python3-pip
like
- Build a new docker image including Python 3:
- Modify all
image
fields toapache/dolphinscheduler:python3
indocker-compose.yml
If you want to deploy dolphinscheduler on Docker Swarm, you need modify docker-stack.yml
Modify
PYTHON_HOME
to/usr/bin/python3
inconfig.env.sh
Run a dolphinscheduler (See How to use this docker image)
Verify Python 3 under a new Python task
How to support Hadoop, Spark, Flink, Hive or DataX?
Take Spark 2.4.7 as an example:
Download the Spark 2.4.7 release binary
spark-2.4.7-bin-hadoop2.7.tgz
Run a dolphinscheduler (See How to use this docker image)
Copy the Spark 2.4.7 release binary into Docker container
Because the volume dolphinscheduler-shared-local
is mounted on /opt/soft
, all files in /opt/soft
will not be lost
- Attach the container and ensure that
SPARK_HOME2
exists
The last command will print Spark version if everything goes well
- Verify Spark under a Shell task
Check whether the task log contains the output like Pi is roughly 3.146015
- Verify Spark under a Spark task
The file spark-examples_2.11-2.4.7.jar
needs to be uploaded to the resources first, and then create a Spark task with:
- Spark Version:
SPARK2
- Main Class:
org.apache.spark.examples.SparkPi
- Main Package:
spark-examples_2.11-2.4.7.jar
- Deploy Mode:
local
Similarly, check whether the task log contains the output like Pi is roughly 3.146015
- Verify Spark on YARN
Spark on YARN (Deploy Mode is cluster
or client
) requires Hadoop support. Similar to Spark support, the operation of supporting Hadoop is almost the same as the previous steps
Ensure that $HADOOP_HOME
and $HADOOP_CONF_DIR
exists
How to support Spark 3?
In fact, the way to submit applications with spark-submit
is the same, regardless of Spark 1, 2 or 3. In other words, the semantics of SPARK_HOME2
is the second SPARK_HOME
instead of SPARK2
's HOME
, so just set SPARK_HOME2=/path/to/spark3
Take Spark 3.1.1 as an example:
Download the Spark 3.1.1 release binary
spark-3.1.1-bin-hadoop2.7.tgz
Trident range vst plugin crack. Run a dolphinscheduler (See How to use this docker image)
Copy the Spark 3.1.1 release binary into Docker container
- Attach the container and ensure that
SPARK_HOME2
exists
The last command will print Spark version if everything goes well
- Verify Spark under a Shell task
Check whether the task log contains the output like Pi is roughly 3.146015
How to support shared storage between Master, Worker and Api server?
Note: If it is deployed on a single machine by docker-compose
, step 1 and 2 can be skipped directly, and execute the command like docker cp hadoop-3.2.2.tar.gz docker-swarm_dolphinscheduler-worker_1:/opt/soft
to put Hadoop into the shared directory /opt/soft
in the container
For example, Master, Worker and Api server may use Hadoop at the same time
- Modify the volume
dolphinscheduler-shared-local
to support nfs indocker-compose.yml
If you want to deploy dolphinscheduler on Docker Swarm, you need modify docker-stack.yml
Put the Hadoop into the nfs
Ensure that
$HADOOP_HOME
and$HADOOP_CONF_DIR
are correct
How to support local file resource storage instead of HDFS and S3?
Note: If it is deployed on a single machine by docker-compose
, step 2 can be skipped directly
- Modify the following environment variables in
config.env.sh
:
- Modify the volume
dolphinscheduler-resource-local
to support nfs indocker-compose.yml
If you want to deploy dolphinscheduler on Docker Swarm, you need modify docker-stack.yml
How to support S3 resource storage like MinIO?
Take MinIO as an example: Modify the following environment variables in config.env.sh
BUCKET_NAME
, MINIO_IP
, MINIO_ACCESS_KEY
and MINIO_SECRET_KEY
need to be modified to actual values
Note: MINIO_IP
can only use IP instead of domain name, because DolphinScheduler currently doesn't support S3 path style access
How to configure SkyWalking?
Modify SKYWALKING environment variables in config.env.sh
:
Appendix-Environment Variables
Database
DATABASE_TYPE
This environment variable sets the type for database. The default value is postgresql
.
Note: You must be specify it when start a standalone dolphinscheduler server. Like master-server
, worker-server
, api-server
, alert-server
.
DATABASE_DRIVER
This environment variable sets the type for database. The default value is org.postgresql.Driver
.
Note: You must be specify it when start a standalone dolphinscheduler server. Like master-server
, worker-server
, api-server
, alert-server
.
DATABASE_HOST
This environment variable sets the host for database. The default value is 127.0.0.1
.
Note: You must be specify it when start a standalone dolphinscheduler server. Like master-server
, worker-server
, api-server
, alert-server
.
DATABASE_PORT
This environment variable sets the port for database. The default value is 5432
.
Note: You must be specify it when start a standalone dolphinscheduler server. Like master-server
, worker-server
, api-server
, alert-server
.
DATABASE_USERNAME
This environment variable sets the username for database. The default value is root
.
Note: You must be specify it when start a standalone dolphinscheduler server. Like master-server
, worker-server
, api-server
, alert-server
.
DATABASE_PASSWORD
This environment variable sets the password for database. The default value is root
.
Note: You must be specify it when start a standalone dolphinscheduler server. Like master-server
, worker-server
, api-server
, alert-server
.
DATABASE_DATABASE
This environment variable sets the database for database. The default value is dolphinscheduler
.
Note: You must be specify it when start a standalone dolphinscheduler server. Like master-server
, worker-server
, api-server
, alert-server
.
DATABASE_PARAMS
This environment variable sets the database for database. The default value is characterEncoding=utf8
.
Note: You must be specify it when start a standalone dolphinscheduler server. Like master-server
, worker-server
, api-server
, alert-server
.
ZooKeeper
ZOOKEEPER_QUORUM
This environment variable sets zookeeper quorum. The default value is 127.0.0.1:2181
.
Note: You must be specify it when start a standalone dolphinscheduler server. Like master-server
, worker-server
, api-server
.
ZOOKEEPER_ROOT
This environment variable sets zookeeper root directory for dolphinscheduler. The default value is /dolphinscheduler
.
Common
DOLPHINSCHEDULER_OPTS
This environment variable sets jvm options for dolphinscheduler, suitable for master-server
, worker-server
, api-server
, alert-server
, logger-server
. The default value is empty.
DATA_BASEDIR_PATH
User data directory path, self configuration, please make sure the directory exists and have read write permissions. The default value is /tmp/dolphinscheduler
RESOURCE_STORAGE_TYPE
This environment variable sets resource storage type for dolphinscheduler like HDFS
, S3
, NONE
. The default value is HDFS
.
RESOURCE_UPLOAD_PATH
This environment variable sets resource store path on HDFS/S3 for resource storage. The default value is /dolphinscheduler
.
FS_DEFAULT_FS
This environment variable sets fs.defaultFS for resource storage like file:///
, hdfs://mycluster:8020
or s3a://dolphinscheduler
. The default value is file:///
.
FS_S3A_ENDPOINT
This environment variable sets s3 endpoint for resource storage. The default value is s3.xxx.amazonaws.com
.
FS_S3A_ACCESS_KEY
This environment variable sets s3 access key for resource storage. The default value is xxxxxxx
.
FS_S3A_SECRET_KEY
This environment variable sets s3 secret key for resource storage. The default value is xxxxxxx
.
HADOOP_SECURITY_AUTHENTICATION_STARTUP_STATE
This environment variable sets whether to startup kerberos. The default value is false
.
JAVA_SECURITY_KRB5_CONF_PATH
This environment variable sets java.security.krb5.conf path. The default value is /opt/krb5.conf
.
LOGIN_USER_KEYTAB_USERNAME
This environment variable sets login user from keytab username. The default value is hdfs@HADOOP.COM
.
LOGIN_USER_KEYTAB_PATH
This environment variable sets login user from keytab path. The default value is /opt/hdfs.keytab
.
KERBEROS_EXPIRE_TIME
This environment variable sets kerberos expire time, the unit is hour. The default value is 2
.
HDFS_ROOT_USER
This environment variable sets hdfs root user when resource.storage.type=HDFS. The default value is hdfs
.
RESOURCE_MANAGER_HTTPADDRESS_PORT
This environment variable sets resource manager httpaddress port. The default value is 8088
.
YARN_RESOURCEMANAGER_HA_RM_IDS
This environment variable sets yarn resourcemanager ha rm ids. The default value is empty.
YARN_APPLICATION_STATUS_ADDRESS
This environment variable sets yarn application status address. The default value is http://ds1:%s/ws/v1/cluster/apps/%s
.
SKYWALKING_ENABLE
This environment variable sets whether to enable skywalking. The default value is false
.
SW_AGENT_COLLECTOR_BACKEND_SERVICES
This environment variable sets agent collector backend services for skywalking. The default value is 127.0.0.1:11800
.
SW_GRPC_LOG_SERVER_HOST
This environment variable sets grpc log server host for skywalking. The default value is 127.0.0.1
.
SW_GRPC_LOG_SERVER_PORT
This environment variable sets grpc log server port for skywalking. The default value is 11800
.
HADOOP_HOME
This environment variable sets HADOOP_HOME
. The default value is /opt/soft/hadoop
.
HADOOP_CONF_DIR
This environment variable sets HADOOP_CONF_DIR
. The default value is /opt/soft/hadoop/etc/hadoop
.
SPARK_HOME1
This environment variable sets SPARK_HOME1
. The default value is /opt/soft/spark1
.
SPARK_HOME2
This environment variable sets SPARK_HOME2
. The default value is /opt/soft/spark2
.
PYTHON_HOME
This environment variable sets PYTHON_HOME
. The default value is /usr/bin/python
.
JAVA_HOME
This environment variable sets JAVA_HOME
. The default value is /usr/local/openjdk-8
.
HIVE_HOME
This environment variable sets HIVE_HOME
. The default value is /opt/soft/hive
.
FLINK_HOME
This environment variable sets FLINK_HOME
. The default value is /opt/soft/flink
.
DATAX_HOME
This environment variable sets DATAX_HOME
. The default value is /opt/soft/datax
.
Master Server
MASTER_SERVER_OPTS
This environment variable sets jvm options for master-server
. The default value is -Xms1g -Xmx1g -Xmn512m
.
MASTER_EXEC_THREADS
This environment variable sets exec thread number for master-server
. The default value is 100
.
MASTER_EXEC_TASK_NUM
This environment variable sets exec task number for master-server
. The default value is 20
.
MASTER_DISPATCH_TASK_NUM
This environment variable sets dispatch task number for master-server
. The default value is 3
.
MASTER_HOST_SELECTOR
This environment variable sets host selector for master-server
. Optional values include Random
, RoundRobin
and LowerWeight
. The default value is LowerWeight
.
MASTER_HEARTBEAT_INTERVAL
This environment variable sets heartbeat interval for master-server
. The default value is 10
.
MASTER_TASK_COMMIT_RETRYTIMES
This environment variable sets task commit retry times for master-server
. The default value is 5
.
MASTER_TASK_COMMIT_INTERVAL
This environment variable sets task commit interval for master-server
. The default value is 1
.
MASTER_MAX_CPULOAD_AVG
This environment variable sets max cpu load avg for master-server
. The default value is -1
.
MASTER_RESERVED_MEMORY
This environment variable sets reserved memory for master-server
, the unit is G. The default value is 0.3
.
Worker Server
WORKER_SERVER_OPTS
This environment variable sets jvm options for worker-server
. The default value is -Xms1g -Xmx1g -Xmn512m
.
WORKER_EXEC_THREADS
This environment variable sets exec thread number for worker-server
. The default value is 100
.
WORKER_HEARTBEAT_INTERVAL
This environment variable sets heartbeat interval for worker-server
. The default value is 10
.
WORKER_MAX_CPULOAD_AVG
This environment variable sets max cpu load avg for worker-server
. The default value is -1
.
WORKER_RESERVED_MEMORY
This environment variable sets reserved memory for worker-server
, the unit is G. The default value is 0.3
.
WORKER_GROUPS
This environment variable sets groups for worker-server
. The default value is default
.
Alert Server
ALERT_SERVER_OPTS
This environment variable sets jvm options for alert-server
. The default value is -Xms512m -Xmx512m -Xmn256m
.
XLS_FILE_PATH
This environment variable sets xls file path for alert-server
. The default value is /tmp/xls
.
MAIL_SERVER_HOST
This environment variable sets mail server host for alert-server
. The default value is empty.
MAIL_SERVER_PORT
This environment variable sets mail server port for alert-server
. The default value is empty.
MAIL_SENDER
This environment variable sets mail sender for alert-server
. The default value is empty.
MAIL_USER=
This environment variable sets mail user for alert-server
. The default value is empty.
Docker Quickstart Terminal Window For Mac Os
MAIL_PASSWD
This environment variable sets mail password for alert-server
. The default value is empty.
MAIL_SMTP_STARTTLS_ENABLE
This environment variable sets SMTP tls for alert-server
. The default value is true
.
MAIL_SMTP_SSL_ENABLE
This environment variable sets SMTP ssl for alert-server
. The default value is false
.
MAIL_SMTP_SSL_TRUST
This environment variable sets SMTP ssl truest for alert-server
. The default value is empty.
ENTERPRISE_WECHAT_ENABLE
This environment variable sets enterprise wechat enable for alert-server
. The default value is false
.
ENTERPRISE_WECHAT_CORP_ID
This environment variable sets enterprise wechat corp id for alert-server
. The default value is empty.
ENTERPRISE_WECHAT_SECRET
Docker Quickstart Terminal Window For Mac Free
This environment variable sets enterprise wechat secret for alert-server
. The default value is empty.
ENTERPRISE_WECHAT_AGENT_ID
This environment variable sets enterprise wechat agent id for alert-server
. The default value is empty.
ENTERPRISE_WECHAT_USERS
This environment variable sets enterprise wechat users for alert-server
. The default value is empty.
Api Server
API_SERVER_OPTS
This environment variable sets jvm options for api-server
. The default value is -Xms512m -Xmx512m -Xmn256m
.
Logger Server
LOGGER_SERVER_OPTS
This environment variable sets jvm options for logger-server
. The default value is -Xms512m -Xmx512m -Xmn256m
.
Are you still stuck with Windows 8.1 or earlier? Then, if you want to use Docker, you have to use the Docker Toolbox.
Docker Toolbox comes with its own “shell” called Docker Quickstart Terminal. It uses Windows’ own command window – which is pretty limited.
As I explored in Command Line Replacement For Windows, there are alternatives.
To be able to interact with Docker Toolbox in these alternative command line tools, you can create a simple batch file that drops you into the same Docker shell as the “Docker Quickstart Terminal”: