1、Docker安装
参考:https://www.cnblogs.com/a120608yby/p/9883175.html
2、Docker Compose安装
参考:https://www.cnblogs.com/a120608yby/p/14582853.html
3、服务配置
# cat docker-compose.yml version: '3.8' services: elasticr-view: image: kecikeci/elastic_view:latest container_name: elasticr-view restart: unless-stopped ports: - 8090:8090 networks: - ops_default volumes: - ./data:/data networks: ops_default: external: true
4、服务启动
docker-compose up -d
5、查看服务启动状态
docker-compose ps
参考:https://github.com/1340691923/ElasticView
标签:Compose,ElasticView,compose,https,Docker,docker From: https://www.cnblogs.com/a120608yby/p/17168218.html