outposts: implement docker controller
This commit is contained in:
13
passbook/providers/proxy/controllers/docker.py
Normal file
13
passbook/providers/proxy/controllers/docker.py
Normal file
@ -0,0 +1,13 @@
|
||||
"""Proxy Provider Docker Contoller"""
|
||||
from passbook.outposts.controllers.docker import DockerController
|
||||
|
||||
|
||||
class ProxyDockerController(DockerController):
|
||||
"""Proxy Provider Docker Contoller"""
|
||||
|
||||
def __init__(self, outpost_pk: str):
|
||||
super().__init__(outpost_pk)
|
||||
self.deployment_ports = {
|
||||
"http": 4180,
|
||||
"https": 4443,
|
||||
}
|
||||
Reference in New Issue
Block a user