let users now how to update the container

This commit is contained in:
Christopher Dixon 2024-02-29 19:46:36 -05:00
parent 1180d0d189
commit 5df6e1d646
1 changed files with 13 additions and 0 deletions

View File

@ -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)
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
```