|
|
|
|
|
by cogman10
192 days ago
|
|
You can mount the current directory into docker and run an image of your tool. Here's an example of that from the docker maven. `docker run -it --rm --name my-maven-project -v "$(pwd)":/usr/src/mymaven -w /usr/src/mymaven maven:3.3-jdk-8 mvn clean install` You can get as fancy as you like with things like your `.m2` directory, this just gives you the basics of how you'd do that. |
|