Skip to content

Commit

Permalink
fix rendering and subtitles
Browse files Browse the repository at this point in the history
  • Loading branch information
jdpinedac committed Oct 12, 2023
1 parent fbe5c57 commit 65d84a0
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions source/docs/casper/operators/aws-nodes/7-troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
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
> ```

0 comments on commit 65d84a0

Please sign in to comment.