https://help.aliyun.com/document_detail/51853.html
https://docs.docker.com/compose/install/
Centos
https://blog.csdn.net/Alen_xiaoxin/article/details/104850553
bash
systemctl enable docker
docker-compose安装
https://blog.csdn.net/qq465084127/article/details/117396612
bash
sudo chown -R 1000:1000 /app/es/data
chmod 777 /app/es/data
Ubuntu
bash
systemctl enable docker
https://developer.aliyun.com/article/658984
bash
sudo apt install docker.io
sudo apt install docker-compose
sudo useradd -r -m -s /bin/bash es
-r:建立系统账号
-m:自动建立用户的登入目录
-s:指定用户登入后所使用的shell
在 Ubuntu18.04 中,不会在创建用户的时候自动提示设置密码。需要手动执行:sudo passwd es。来设置新用户的密码。