Quickly fire up a C++ editor, compiler, and debugger! https://hub.docker.com/r/ta180m/quickpp
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
Go to file
Anthony Wang 0fda3a40f1
Update Dockerfile
3 years ago
Dockerfile Update Dockerfile 3 years ago
Dockerfile-alpine Update Dockerfile-alpine 3 years ago
README.md Update README.md 3 years ago

README.md

Quickpp

Quickly fire up a disposable C++ editor, compiler, and debugger! GNU Nano, GCC, and GDB included!

Usage

It's as easy as:

docker run --rm -it ta180m/quickpp

By default it uses Arch, but if you prefer Alpine:

docker run --rm -it ta180m/quickpp:alpine

The source file is located at main.cpp. Compile with g++ main.cpp -o main -g -std=c++17. Run the executable with ./main or debug with gdb main.

You can automate the process by running bash in Arch or ash in Alpine.

To exit, run docker kill $(docker ps -q --filter ancestor=ta180m/quickpp ) on the host.