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

@ -6,7 +6,7 @@ class AddCommand(Command):
def __init__(self):
super().__init__("add", "Add a domain", "add <name> <domain> <service host>")
def execute(self, traefikConfig:TraefikConfig, args):
def execute(self, traefikConfig: TraefikConfig, args):
if len(args) < 3:
self.printUsage()
return
@ -31,6 +31,6 @@ class AddCommand(Command):
traefikConfig.save()
restartTraefik()
# restartTraefik()
print(f"Access your service at http://{domain}")