Skip to content

Commit ed03344

Browse files
committed
📝 add Dockerfile README entry
1 parent f230d6e commit ed03344

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,3 +77,21 @@ Options:
7777
--version Show the version and exit.
7878
--help Show this message and exit.
7979
```
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+
```bash
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

Comments
 (0)