Don't use an image to show the results of docker ps

The alternative text of the image was useless, and we were depending on
an external server in order to display it. Furthermore, the text inside
the image was pretty small.

So we're displaying the output of the command as plain text.
This commit is contained in:
Javi Martín
2024-09-16 17:52:59 +02:00
parent d88ea7f26d
commit b3facb39bf
2 changed files with 12 additions and 2 deletions

View File

@@ -89,7 +89,12 @@ docker ps
``` ```
You should see an output similar to this: You should see an output similar to this:
![docker ps](https://i.imgur.com/ASvzXrd.png)
```bash
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
603ec83b78a6 consuldemocracy-app "./docker-entrypoint…" 23 seconds ago Up 22 seconds consuldemocracy-app-run-afb6d68e2d99
d57fdd9637d6 postgres:13.16 "docker-entrypoint.s…" 50 minutes ago Up 22 seconds 5432/tcp consuldemocracy-database-1
```
## Troubleshooting ## Troubleshooting

View File

@@ -89,7 +89,12 @@ docker ps
``` ```
Deberías obtener algo similar a: Deberías obtener algo similar a:
![docker ps](https://i.imgur.com/ASvzXrd.png)
```bash
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
603ec83b78a6 consuldemocracy-app "./docker-entrypoint…" 23 seconds ago Up 22 seconds consuldemocracy-app-run-afb6d68e2d99
d57fdd9637d6 postgres:13.16 "docker-entrypoint.s…" 50 minutes ago Up 22 seconds 5432/tcp consuldemocracy-database-1
```
## Resolución de problemas ## Resolución de problemas