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
fix bash code to attach to interactive command prompt
In the documentation it mentions that e69e056c702d is the ID of the container as shown in the example but the ID was missing in the bash code example. this change should make it more clear.
Copy file name to clipboardExpand all lines: articles/azure-sql-edge/connect.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ The [SQL Server command-line tools](/sql/linux/sql-server-linux-setup-tools) are
54
54
1. Use the `docker exec -it` command to start an interactive bash shell inside your running container. In the following example, `e69e056c702d` is the container ID.
55
55
56
56
```bash
57
-
docker exec -it <Azure SQL Edge container ID or name> /bin/bash
57
+
docker exec -it e69e056c702d /bin/bash
58
58
```
59
59
60
60
> [!TIP]
@@ -112,4 +112,4 @@ To connect to an instance of Azure SQL Edge by using Azure Data Studio on a Wind
112
112
113
113
[Connect and query](/sql/linux/sql-server-linux-configure-docker#connect-and-query)
114
114
115
-
[Install SQL Server tools on Linux](/sql/linux/sql-server-linux-setup-tools)
115
+
[Install SQL Server tools on Linux](/sql/linux/sql-server-linux-setup-tools)
0 commit comments