We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e967f3d commit d1ff65bCopy full SHA for d1ff65b
1 file changed
README.md
@@ -11,4 +11,20 @@ All other parts of the library are licenced under [BSD 2-Clause License](LICENSE
11
12
## Usage
13
14
+Connect to an Sqlsrv inside another container (Container name is "my-sqlsrv"):
15
16
+```bash
17
+docker run -it --link my-sqlsrv:sqlsrv fabiang/sqlcmd -S sqlsrv -U sa
18
+```
19
+
20
+Or to any other server on the network:
21
22
23
+docker run -it fabiang/sqlcmd -S some-sqlsrv -U sa
24
25
26
+Get available options with:
27
28
29
+docker run -it fabiang/sqlcmd '-?'
30
0 commit comments