Skip to content

Commit

Permalink
📝 add Dockerfile README entry
Browse files Browse the repository at this point in the history
  • Loading branch information
techouse committed Dec 4, 2023
1 parent b4dacfa commit 312e062
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,20 @@ Options:
--version Show the version and exit.
--help Show this message and exit.
```

#### Dockerfile

If you prefer to use Docker, you can build the image yourself:

```bash
docker build -t mysql2sqlite .
```

and then run it:

```bash
docker run -it -w `pwd` -v `pwd`:`pwd` --rm mysql2sqlite --help
```

This will mount your host current working directory (pwd) inside the Docker container as the current working directory.
Any files Docker would write to the current working directory are written to the host directory where you did docker run.

0 comments on commit 312e062

Please sign in to comment.