Merge branch 'develop'

pull/117/head
13621160019@163.com 2022-01-03 23:00:06 +08:00
commit 99d9e0881b
7 changed files with 65 additions and 0 deletions

10
admin/README.md vendored
View File

@ -49,6 +49,16 @@ docker run -d -p 8001:8001 -v /upload:/var/www/html/admin/upload --restart alway
--name Assign a name to the container
If you want to immigrate the image to another computer,
* Export image to tarball file
```bash
docker save --output myems-admin.tar myems/myems-admin
```
* Copy the tarball file to another computer, and then load image from tarball file
```bash
docker load --input .\myems-admin.tar
```
## Option 2: Install on NGINX Server
* Install NGINX Server

View File

@ -52,6 +52,15 @@ docker run -d --restart always --name myems-aggregation myems/myems-aggregation
--name Assign a name to the container
If you want to immigrate the image to another computer,
* Export image to tarball file
```bash
docker save --output myems-aggregation.tar myems/myems-aggregation
```
* Copy the tarball file to another computer, and then load image from tarball file
```bash
docker load --input .\myems-aggregation.tar
```
### Option 2: Online install myems-aggregation on Ubuntu Server with internet access

View File

@ -76,6 +76,15 @@ docker run -d -p 8000:8000 -v /upload:/var/www/html/admin/upload --restart alway
--name Assign a name to the container
If you want to immigrate the image to another computer,
* Export image to tarball file
```bash
docker save --output myems-api.tar myems/myems-api
```
* Copy the tarball file to another computer, and then load image from tarball file
```bash
docker load --input .\myems-api.tar
```
### Option 2: Online install myems-api on Ubuntu Server with internet access

View File

@ -51,6 +51,15 @@ docker run -d --restart always --name myems-cleaning myems/myems-cleaning
--name Assign a name to the container
If you want to immigrate the image to another computer,
* Export image to tarball file
```bash
docker save --output myems-cleaning.tar myems/myems-cleaning
```
* Copy the tarball file to another computer, and then load image from tarball file
```bash
docker load --input .\myems-cleaning.tar
```
### Option 2: Install myems-cleaning on Ubuntu Server (bare-metal or virtual machine)

View File

@ -53,6 +53,15 @@ docker run -d --restart always --name myems-modbus-tcp myems/myems-modbus-tcp
--name Assign a name to the container
If you want to immigrate the image to another computer,
* Export image to tarball file
```bash
docker save --output myems-modbus-tcp.tar myems/myems-modbus-tcp
```
* Copy the tarball file to another computer, and then load image from tarball file
```bash
docker load --input .\myems-modbus-tcp.tar
```
### Option 2: Install myems-modbus-tcp on Ubuntu Server (bare-metal or virtual machine)

View File

@ -58,6 +58,16 @@ docker run -d --restart always --name myems-normalization myems/myems-normalizat
--name Assign a name to the container
If you want to immigrate the image to another computer,
* Export image to tarball file
```bash
docker save --output myems-normalization.tar myems/myems-normalization
```
* Copy the tarball file to another computer, and then load image from tarball file
```bash
docker load --input .\myems-normalization.tar
```
### Option 2: Install myems-normalization on Ubuntu Server (bare-metal or virtual machine)
In this section, you will install myems-normalization on Ubuntu Server.

9
web/README.md vendored
View File

@ -95,6 +95,15 @@ docker run -dp 80:80 --restart always --name myems-web myems/myems-web
--name Assign a name to the container
If you want to immigrate the image to another computer,
* Export image to tarball file
```bash
docker save --output myems-web.tar myems/myems-web
```
* Copy the tarball file to another computer, and then load image from tarball file
```bash
docker load --input .\myems-web.tar
```
### Option 2: Install myems-web on Server with NGINX