https://github.com/silencehvk/docker-compose-monocular-ui
:books: :coffee: 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 安装的方法,在此整合一下)
https://github.com/silencehvk/docker-compose-monocular-ui
docker helm internet monocular
Last synced: 5 months ago
JSON representation
:books: :coffee: 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 安装的方法,在此整合一下)
- Host: GitHub
- URL: https://github.com/silencehvk/docker-compose-monocular-ui
- Owner: SilenceHVK
- License: mit
- Created: 2018-09-17T06:19:18.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-10T14:54:06.000Z (almost 7 years ago)
- Last Synced: 2025-03-31T03:14:41.687Z (6 months ago)
- Topics: docker, helm, internet, monocular
- Language: Go
- Homepage:
- Size: 39.9 MB
- Stars: 15
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-compose-monocular-ui
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.
1. Clone project
```bash
$ git clone https://github.com/SilenceHVK/docker-compose-monocular-ui.git
```2. Install python-pip
```bash
$ yum -y install epel-release
$ yum -y install python-pip
```3. Upgrade pip
```bash
$ pip install --upgrade pip
```4. Install Docker-Compose
```bash
$ pip install docker-compose
```
or
```bash
$ 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
```5. Modify page port number
```bash
$ vi docker-compose-monocular-ui/docker-compose.yaml
```
6. Build project
```bash
$ docker-compose build
```7. Run project
```bash
$ docker-compose up -d
```