Started with adding container creation and a server state machine
This commit is contained in:
11
MoonlightServers.Daemon/Models/ServerTask.cs
Normal file
11
MoonlightServers.Daemon/Models/ServerTask.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace MoonlightServers.Daemon.Models;
|
||||
|
||||
public enum ServerTask
|
||||
{
|
||||
None = 0,
|
||||
CreatingStorage = 1,
|
||||
PullingDockerImage = 2,
|
||||
RemovingContainer = 3,
|
||||
CreatingContainer = 4,
|
||||
StartingContainer = 5
|
||||
}
|
||||
Reference in New Issue
Block a user