docker-compose-monocular-ui
December 10, 2018 · View on GitHub
There are a lot of problems with installing Monocular UI with Helm. I found the Docker Compose installation method on the Internet and integrated it here.(使用 Helm 安装 Monocular UI 遇到了很多问题,在网上找到了 Docker Compose 安装的方法,在此整合一下)
How to use
The following is an example of the CentOS 7 system. Docker is installed by default.
- Clone project
$ git clone https://github.com/SilenceHVK/docker-compose-monocular-ui.git
- Install python-pip
$ yum -y install epel-release
$ yum -y install python-pip
- Upgrade pip
$ pip install --upgrade pip
- Install Docker-Compose
$ pip install docker-compose
or
$ curl -L https://get.daocloud.io/docker/compose/releases/download/1.23.1/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
$ chmod +x /usr/local/bin/docker-compose
- Modify page port number
$ vi docker-compose-monocular-ui/docker-compose.yaml

- Build project
$ docker-compose build
- Run project
$ docker-compose up -d
