https://github.com/matisszilard/docker-ubuntu-dev
Docker image with Ubuntu and essentials for C/C++ programming
https://github.com/matisszilard/docker-ubuntu-dev
c c-plus-plus development-environment docker-image ubuntu
Last synced: 2 months ago
JSON representation
Docker image with Ubuntu and essentials for C/C++ programming
- Host: GitHub
- URL: https://github.com/matisszilard/docker-ubuntu-dev
- Owner: matisszilard
- License: mit
- Created: 2017-02-20T19:03:19.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-09-23T11:48:13.000Z (almost 6 years ago)
- Last Synced: 2025-04-21T08:13:49.494Z (about 1 year ago)
- Topics: c, c-plus-plus, development-environment, docker-image, ubuntu
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/mszg/docker-ubuntu-dev/
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-ubuntu-dev
Docker image with Ubuntu and essentials for C/C++ programming.
Automated builds on Docker Hub: https://hub.docker.com/r/mszg/docker-ubuntu-dev
## Build the image
```
docker build . -t mszg/docker-ubuntu-dev
```
## Download the image from the Docker Hub
```
docker pull mszg/docker-ubuntu-dev
```
## Run the image
```
docker run -it mszg/docker-ubuntu-dev:latest bash
```
## Run and mount the current directory
The current folder is mounted into the `mydir` director
```
docker run -it -v $(pwd):/mydir mszg/docker-ubuntu-dev:latest bash
```