https://github.com/pblischak/boost-docker-test
Test program for compiling/linking with the Boost C++ Libraries to create a Docker image
https://github.com/pblischak/boost-docker-test
boost cpp docker-image dockerfile
Last synced: about 2 months ago
JSON representation
Test program for compiling/linking with the Boost C++ Libraries to create a Docker image
- Host: GitHub
- URL: https://github.com/pblischak/boost-docker-test
- Owner: pblischak
- License: mit
- Created: 2016-05-16T21:21:23.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-20T20:26:29.000Z (about 9 years ago)
- Last Synced: 2025-03-24T09:46:48.918Z (3 months ago)
- Topics: boost, cpp, docker-image, dockerfile
- Language: C++
- Homepage:
- Size: 8.79 KB
- Stars: 9
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
## Creates a Docker image with a C++ program that links to the Boost C++ libraries
The resulting image is on Docker Hub: pblischak/boost-test.
Pull it within a Docker Quickstart Terminal
```
docker pull pblischak/boost-test
```Then run it using `docker run`:
```
docker run -it pblischak/boost-test
```This puts you in a bash environment where the `BoostTest` executable is available. Try running:
```
BoostTest -h
BoostTest -v 1234
```