Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
update docker package version
Browse files Browse the repository at this point in the history
update  version latest -> 2.0.3
  • Loading branch information
Jzow committed Oct 24, 2023
1 parent 2bcd613 commit 2d7fb0c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,22 @@ You can directly use the Docker pull image for quick startup. Here are the comma

### Pull images
```shell
docker pull wansenai/eairp-web:latest
docker pull wansenai/eairp-web:2.0.3
```

### Run Server
Please note the `API_BASE_URL` parameter, this is the address mapped by the back-end interface.
If you are deploying on your server, modify the localhost address here to your server IP.
```shell
docker run --name eairp-web -d -p 3000:80 -e API_BASE_URL=http://localhost:8080/erp-api wansenai/eairp-web:latest
docker run --name eairp-web -d -p 3000:80 -e API_BASE_URL=http://localhost:8080/erp-api wansenai/eairp-web:2.0.3
```
If you want to deploy the API using Docker, you can also pull the API image
```shell
docker pull wansenai/eairp:latest
docker pull wansenai/eairp:2.0.3
```
And run API services
```shell
docker run --name eairp -d -p 9998:8088 wansenai/eairp:latest
docker run --name eairp -d -p 9998:8088 wansenai/eairp:2.0.3
```

### Online preview
Expand Down

0 comments on commit 2d7fb0c

Please sign in to comment.