Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 705 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 705 Bytes

build_check

MyFave

This is a simple C++ command line application to maintain a list of your favorites.

Getting Started

If you have not already built the image from Dockerfile, use the command:

docker build -t cpp-container .

You should only have to build once. Once built, run the container:

docker run -it cpp-container

...or run it interactively in a shell:

docker run -it cpp-container sh

...or run it with a volume mounted to the current source code:

docker run -v "$(pwd)":/usr/src -it cpp-container