We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f230d6e commit ed03344Copy full SHA for ed03344
README.md
@@ -77,3 +77,21 @@ Options:
77
--version Show the version and exit.
78
--help Show this message and exit.
79
```
80
+
81
+#### Dockerfile
82
83
+If you prefer to use Docker, you can build the image yourself:
84
85
+```bash
86
+docker build -t sqlite3mysql .
87
+```
88
89
+and then run it:
90
91
92
+docker run -it -w `pwd` -v `pwd`:`pwd` --rm sqlite3mysql --help
93
94
95
+This will mount your host current working directory (pwd) inside the Docker container as the current working directory.
96
+Any files Docker would write to the current working directory are written to the host directory where you did docker
97
+run.
0 commit comments