Update README.md

This commit is contained in:
programmingPug
2025-01-16 16:52:08 -05:00
parent bfeaf9f89f
commit a428aacd99

View File

@@ -141,13 +141,13 @@ docker push 192.168.1.193:5000/plantpal-client
### Create Docker Network ### Create Docker Network
Create new docker network for the containers to communicate Create new docker network for the containers to communicate
```sh ```sh
docker network create soilmoisture_network docker network create plantpal_network
``` ```
### Run API Image ### Run API Image
```sh ```sh
docker run -d --name plantpal_api --network soilmoisture_network -p 8000:80 plantpal_api:latest docker run -d --name plantpal_api --network plantpal_network -p 8000:80 plantpal_api:latest
``` ```
### Run Client Image ### Run Client Image