Open
Description
When configuring a Docker Container for an app, you might want to use a different command than is specified in the container (or arguments). The current only possibility is to create a separate container with a different command.
Having the option in 'Container configuration' to specify a 'command' and 'args' would give the flexibility of using the same image for different implementations of an application.
Example of resulting k3s config:
command: ["node"]
args:
- -e
- var http = require('http');
http.createServer(function(req, res) {
res.writeHead(200);
res.end('Hello World!\n');
}).listen(80);