All checks were successful
Caddy Manager CI build / docker (push) Successful in 1m16s
13 lines
314 B
C#
13 lines
314 B
C#
namespace CaddyManager.Contracts.Docker;
|
|
|
|
/// <summary>
|
|
/// Contract for the service to interact with Docker
|
|
/// </summary>
|
|
public interface IDockerService
|
|
{
|
|
/// <summary>
|
|
/// Method to help restart the Caddy container
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task RestartCaddyContainerAsync();
|
|
} |