Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/guides/postgresql/networking-and-connectivity.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ docker run -d --name postgres-dev \
-v postgres_data:/var/lib/postgresql \
postgres:18

# Outout
# Output
Copy link

Copilot AI Mar 30, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The # Output label in this code block is indented with two leading spaces, which is inconsistent with the other # Output labels earlier in the doc and makes the example output look misaligned. Consider removing the extra leading spaces so the heading aligns with the rest of the block.

Suggested change
# Output
# Output

Copilot uses AI. Check for mistakes.
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
6d351ed89efc postgres:18 "docker-entrypoint.s…" 9 seconds ago Up 8 seconds 5432/tcp postgres-dev

Expand Down Expand Up @@ -335,4 +335,4 @@ This section covers common PostgreSQL connection issues and their solutions when
### "Network not found"

- Ensure the network exists before starting containers: `docker network create my-app-net`
- If using Docker Compose, the network is created automatically when you run `docker compose up`
- If using Docker Compose, the network is created automatically when you run `docker compose up`
Loading