File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,13 @@ docker run -it --rm markhobson/sqlpackage
15
15
To import bacpac file ` /backups/db.bacpac ` to local database ` db ` with username ` sa ` and password ` password ` :
16
16
17
17
``` bash
18
- docker run -it --rm -v /backups:/data --network=host sqlpackage \
18
+ docker run -it --rm -v /backups:/data --network=host markhobson/ sqlpackage \
19
19
/a:Import /tsn:tcp:localhost /tdn:db /tu:sa /tp:password /sf:/data/db.bacpac
20
20
```
21
21
22
22
To export local database ` db ` with username ` sa ` and password ` password ` to bacpac file ` /backups/db.bacpac ` :
23
23
24
24
``` bash
25
- docker run -it --rm -v /backups:/data --network=host sqlpackage \
25
+ docker run -it --rm -v /backups:/data --network=host markhobson/ sqlpackage \
26
26
/a:Export /ssn:tcp:localhost /sdn:db /su:sa /sp:password /tf:/data/db.bacpac
27
27
```
You can’t perform that action at this time.
0 commit comments