mirror of
https://github.com/p-stream/docs.git
synced 2026-05-10 01:30:38 +00:00
let users now how to update the container
This commit is contained in:
parent
1180d0d189
commit
5df6e1d646
1 changed files with 13 additions and 0 deletions
|
|
@ -110,3 +110,16 @@ $ docker compose up -d
|
||||||
- For Windows: [guide](https://www.pcmag.com/how-to/how-to-set-up-a-static-ip-address)
|
- For Windows: [guide](https://www.pcmag.com/how-to/how-to-set-up-a-static-ip-address)
|
||||||
|
|
||||||
10. Navigate to movie web at `http://<static-ip-address` from another device connected to your network.
|
10. Navigate to movie web at `http://<static-ip-address` from another device connected to your network.
|
||||||
|
|
||||||
|
### To Perform Updates For New Releases of Movie Web
|
||||||
|
|
||||||
|
1. Make sure `movie-web` is your current working directory and run:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Stop the running container
|
||||||
|
$ docker compose stop
|
||||||
|
# Remove the stopped container
|
||||||
|
$ docker compose rm
|
||||||
|
# Re-build the image and start the container
|
||||||
|
$ docker compose up -d
|
||||||
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue