Documentation

.NET

Description

Easy to use SFTP (SSH File Transfer Protocol) server with OpenSSH.

Examples

Dependency:
dotnet add package Testcontainers.Sftp
Usage:
var sftpContainer = new SftpBuilder()
  .WithImage("atmoz/sftp:alpine")
  .Build();
await sftpContainer.StartAsync();