From 65d84a0f1dae4f7ca2b5f301384d416a7a0f5f26 Mon Sep 17 00:00:00 2001 From: Juan Pineda Date: Thu, 12 Oct 2023 22:55:57 +0000 Subject: [PATCH] fix rendering and subtitles --- .../operators/aws-nodes/7-troubleshooting.md | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/source/docs/casper/operators/aws-nodes/7-troubleshooting.md b/source/docs/casper/operators/aws-nodes/7-troubleshooting.md index 6024dbd755..d67006573f 100644 --- a/source/docs/casper/operators/aws-nodes/7-troubleshooting.md +++ b/source/docs/casper/operators/aws-nodes/7-troubleshooting.md @@ -26,11 +26,14 @@ Suppose the node experiences a restart during synchronization, typically occurri ## Devcontainer Troubleshooting -- **Repeated container name:** A container with the same name may exist in another project. You can delete the previous container using the command docker container prune or docker container rm [containername]. -- **New image is not updating:** If you are changing the `Dockerfile` -image or modifying the `entrypoint.sh` please restart VSCode or -run the following command if you are not using VSCode: +### Repeated container name: - ```bash - docker compose down; docker rmi {containername}:latest - ``` \ No newline at end of file +A container with the same name may exist in another project. You can delete the previous container using the command docker container prune or docker container rm [containername]. + +### New image is not updating: + +If you are changing the `Dockerfile` image or modifying the `entrypoint.sh` please restart VSCode or run the following command if you are not using VSCode: + +> ```bash +> docker compose down; docker rmi {containername}:latest +> ```