We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4dacfa commit 312e062Copy full SHA for 312e062
README.md
@@ -84,3 +84,20 @@ Options:
84
--version Show the version and exit.
85
--help Show this message and exit.
86
```
87
+
88
+#### Dockerfile
89
90
+If you prefer to use Docker, you can build the image yourself:
91
92
+```bash
93
+docker build -t mysql2sqlite .
94
+```
95
96
+and then run it:
97
98
99
+docker run -it -w `pwd` -v `pwd`:`pwd` --rm mysql2sqlite --help
100
101
102
+This will mount your host current working directory (pwd) inside the Docker container as the current working directory.
103
+Any files Docker would write to the current working directory are written to the host directory where you did docker run.
0 commit comments