You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> As we're running the containers and stopping them each time, we need to let Docker know about any changes.
526
+
527
+
Run the following command:
528
+
529
+
```shell
530
+
docker compose up --abort-on-container-exit --build
531
+
```
532
+
533
+
> [!NOTE]
534
+
> Now, each time we run the containers, Docker is re-building everything and picking up any new changes.
535
+
536
+
> [!TIP]
537
+
> Even though Docker is technically re-building each and every time, if there are no new changes, Docker will use cached layers resulting in faster executions.
0 commit comments