Arbitrary code execution server using Docker //in Go//.
Just to play around with Docker SDK
List of enabled languages.
Example response:
["go", "typescript"]
Evaluate code.
JSON payload with language
and code
keys.
The language
is as in the name of a subfolder in the languages
directory.
Example payload:
{ "language": "go", "code": "package main; import \"fmt\"; func main() { fmt.Println(\"hello world\")}" }
Example response:
{ "result": "hello world\n" }
Errors with 404 if language
is not found, 504
if evaluation timed out, or 500
if evaluation failed for other reasons.
List of containers being handled by Myriag.
Kill all containers, giving back the names of the containers killed.