Jkutkut / Docker4C

Docker container to compile and run C programs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker4C:

This repository contains all the logic required to be able to compile and run C programs in a Docker container. This way, you can debug your programs with ease using tools like valgrind.

Note 1: This repository was created with 42 projects in mind.

Note 2: The container is deleted when you exit, so no need to manage anything!

Usage:

Run specific directory:

  • Go to the directory you want to use inside the container.
  • Run in Mac:
    • Open the Docker App.
    • Run the following command:
docker run -it --rm -v $(PWD):/docker jkutkut/docker4c
  • Run in Linux:
    • Run the following command:
docker run -it --rm -v $(pwd):/docker jkutkut/docker4c

Run with all my things:

Replace $(PWD) with the directory you want.

Example: Run with the Desktop:

docker run -it --rm -v ~/Desktop:/docker jkutkut/docker4c

Update:

If you want to use the latest version, run this before using it:

docker pull jkutkut/docker4c:latest

Features:

v1.0.0:

  • valgrind
  • clang
  • zsh:
    • Oh-my-zsh
    • Custom .zshrc
  • vim:
    • Custom .vimrc
  • git
  • zip
  • curl
  • Libraries installed:
    • build-essential
    • readline-common
    • libreadline-dev

Customization:

If you want to add more tools or features to the container, feel free to contribute to this repository.

If you just want to personalize your container, you can create a permanent container by removing the --rm flag from the command (and naming it so it will be easy to handle later). Keep in mind that you will have to manage the container yourself:

  • Create and run the container:
docker run -it --name d4c -v $(PWD):/docker jkutkut/docker4c
docker run -it --name d4c -v $(pwd):/docker jkutkut/docker4c
  • Stop the container:
docker stop d4c
  • Restart the container:
docker start d4c
  • Delete the container (Requires to stop it first):
docker rm d4c

Versions:

You can see all the images already created here or build your own from the code from this repository.

docker run -it --rm -v $(PWD):/docker jkutkut/docker4c:v1.X.X
docker run -it --rm -v $(pwd):/docker jkutkut/docker4c:v1.X.X

Special thanks:

This project was possible thanks to the inspiration from this repository from yeta1990. Thank you!

About

Docker container to compile and run C programs


Languages

Language:Shell 37.7%Language:Vim Script 32.4%Language:Dockerfile 22.1%Language:Makefile 7.8%