mirror of
https://github.com/SourceFellows/gobuch.git
synced 2026-07-03 19:37:06 +02:00
initial import
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
Starten des docker Containers
|
||||
-----------------------------
|
||||
|
||||
```
|
||||
docker run -v `pwd`:/tmp -it gcc:latest /bin/bash
|
||||
```
|
||||
|
||||
Danach im Container
|
||||
```
|
||||
cd /tmp
|
||||
time g++ hello.cpp
|
||||
```
|
||||
Executable
BIN
Binary file not shown.
@@ -0,0 +1,6 @@
|
||||
#include <iostream>
|
||||
|
||||
int main() {
|
||||
std::cout << "Hello World!";
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user