authentik.providers.rac.controllers.docker
RAC Provider Docker Controller
1"""RAC Provider Docker Controller""" 2 3from authentik.outposts.controllers.docker import DockerController 4from authentik.outposts.models import DockerServiceConnection, Outpost 5 6 7class RACDockerController(DockerController): 8 """RAC Provider Docker Controller""" 9 10 def __init__(self, outpost: Outpost, connection: DockerServiceConnection): 11 super().__init__(outpost, connection) 12 self.deployment_ports = []
8class RACDockerController(DockerController): 9 """RAC Provider Docker Controller""" 10 11 def __init__(self, outpost: Outpost, connection: DockerServiceConnection): 12 super().__init__(outpost, connection) 13 self.deployment_ports = []
RAC Provider Docker Controller
RACDockerController( outpost: authentik.outposts.models.Outpost, connection: authentik.outposts.models.DockerServiceConnection)