Readme-en.md 2.7 KB
Newer Older
M
mamingshuai 已提交
1
## Standalone Docker Environment
C
c00565983 已提交
2

C
c00565983 已提交
3
This document provides guidance on building the Docker image for standard-system devices. For details about how to build the Docker image for mini- and small-system devices, see [OpenHarmony Docker Image](https://gitee.com/openharmony/docs/blob/master/docker/README_en.md)
C
c00565983 已提交
4

M
mamingshuai 已提交
5 6 7 8 9 10 11 12
The Docker image of OpenHarmony is hosted on [HUAWEI Cloud SWR](https://auth.huaweicloud.com/authui/login.html?service=https%3A%2F%2Fconsole.huaweicloud.com%2Fswr%2F%3Fregion%3Dcn-south-1%26cloud_route_state%3D%2Fapp%2Fwarehouse%2FwarehouseMangeDetail%2Fgoldensir%2Fopenharmony-docker%2Fopenharmony-docker%3Ftype%3DownImage&locale=en-us#/login). Using the Docker image will help simplify environment configurations needed for the building. After configuring the development environments, perform the steps below to access the Docker environment. The following steps use Ubuntu as an example (Windows is also supported).

### Setting Up the Docker Environment for Standard-System Devices (reference memory ≥ 128 MB) 

##### **Method 1: Obtaining the Docker image from HuaweiCloud SWR**:

1. Obtain the Docker image.
```
R
raoswing 已提交
13
docker pull swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker-standard:0.0.2
M
mamingshuai 已提交
14 15 16
```
2. Go to the root directory of OpenHarmony code and run the following command to access the Docker build environment:
```
R
raoswing 已提交
17
docker run -it -v $(pwd):/home/openharmony swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker-standard:0.0.2
M
mamingshuai 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
```

##### **Method 2: Using the Dockerfile to Build a Local Docker Image**

1. Obtain the Dockerfile script for a local Docker image.
```
git clone https://gitee.com/openharmony/docs.git
```
2. Go to the directory of the Dockerfile code and run the following command to build the Docker image:
```
cd docs/docker/standard
./build.sh
```
3. Go to the root directory of OpenHarmony code and run the following command to access the Docker build environment:
```
R
raoswing 已提交
33
docker run -it -v $(pwd):/home/openharmony openharmony-docker-standard:0.0.2
M
mamingshuai 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
```

### Building for Standard-System Devices (reference memory ≥ 128 MB)
1. Run the preprocessing script in the root directory of the source code.
```
../scripts/prepare.sh
```
2. Run the following script to start building for Standard-System Devices (reference memory ≥ 128 MB)
```
./build.sh --product-name {product_name}
```
**{product_name}** indicates the platform supported by the current distribution, for example, Hi3516DV300.
Files generated during compilation are stored in the **out/ohos-arm-release/** directory, and the generated image is stored in the **out/ohos-arm-release/packages/phone/images/** directory.



**Note**

 You can exit Docker by simply running the **exit** command.