-
Notifications
You must be signed in to change notification settings - Fork 0
[Development] Running in Docker
Taran Gill edited this page Nov 4, 2019
·
4 revisions
After installing Docker for Windows, you'll have access to the Docker Quickstart Terminal. Open it and go to your project directory.
To build a new image,
$ docker build -t the-creation-station:latest .
To run the image,
$ docker run --rm the-creation-station:latest <enter your command here>
For example,
$ docker run --rm the-creation-station:latest python src/packages/audio_intensity/audio_intensity.py
Note that you'll have to rebuild the image again (using the same command above) to record your code changes.