Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2924_DotNetCoreMigration/HeuristicLab.PluginInfrastructure/3.3/Isolation/DockerRunnerHost.cs @ 16984

Last change on this file since 16984 was 16984, checked in by dpiringe, 5 years ago

#2924:

  • merged projects HeuristicLab.PluginInfrastructure.Runner and HeuristicLab.PluginInfrastructure
  • applied changes of code reviews (13.05.2019 and 22.05.2019) -> the old Runner is now RunnerHost and uses a Runner, which is executed on the child process
  • added Type GetType(string) to IApplicationManager and implemented it for LightweightApplicationManager
  • removed IActivator and IActivatorContext
  • deleted unused types like PluginDescriptionIterator
File size: 336 bytes
Line 
1namespace HeuristicLab.PluginInfrastructure {
2  /// <summary>
3  /// IRunner for isolation with docker.
4  /// </summary>
5  public class DockerRunnerHost : RunnerHost {
6    public DockerRunnerHost()
7      : base("docker", "run -i --rm --mount type=bind,source=/c/Users/,target=/Users hlcore", null, null, null) {
8    }
9  }
10}
Note: See TracBrowser for help on using the repository browser.