add restart command
All checks were successful
Publish Docker Image / docker (push) Successful in 2m53s

This commit is contained in:
Lee
2024-04-17 02:24:45 +01:00
parent 4ee7337e9d
commit cacdf1f5b9
5 changed files with 16 additions and 4 deletions

View File

@ -0,0 +1,10 @@
from command.command import Command
from traefik.traefikConfig import TraefikConfig
from utils.dockerUtils import restartTraefik
class RestartCommand(Command):
def __init__(self):
super().__init__("restart", "Restart traefik", "")
def execute(self, traefikConfig: TraefikConfig, args):
restartTraefik()