68 lines
2.6 KiB
Python
68 lines
2.6 KiB
Python
# Copyright © 2022, 2023 Vulcanize
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http:#www.gnu.org/licenses/>.
|
|
|
|
from python_on_whales import DockerClient, DockerException
|
|
from app.deployer import Deployer, DeployerException
|
|
|
|
|
|
class DockerDeployer(Deployer):
|
|
name: str = "compose"
|
|
|
|
def __init__(self, compose_files, compose_project_name, compose_env_file) -> None:
|
|
self.docker = DockerClient(compose_files=compose_files, compose_project_name=compose_project_name,
|
|
compose_env_file=compose_env_file)
|
|
|
|
def compose_up(self, detach, services):
|
|
try:
|
|
return self.docker.compose.up(detach=detach, services=services)
|
|
except DockerException as e:
|
|
raise DeployerException(e)
|
|
|
|
def compose_down(self, timeout, volumes):
|
|
try:
|
|
return self.docker.compose.down(timeout=timeout, volumes=volumes)
|
|
except DockerException as e:
|
|
raise DeployerException(e)
|
|
|
|
def compose_ps(self):
|
|
try:
|
|
return self.docker.compose.ps()
|
|
except DockerException as e:
|
|
raise DeployerException(e)
|
|
|
|
def compose_port(self, service, private_port):
|
|
try:
|
|
return self.docker.compose.port(service=service, private_port=private_port)
|
|
except DockerException as e:
|
|
raise DeployerException(e)
|
|
|
|
def compose_execute(self, service, command, envs):
|
|
try:
|
|
return self.docker.compose.execute(service=service, command=command, envs=envs)
|
|
except DockerException as e:
|
|
raise DeployerException(e)
|
|
|
|
def compose_logs(self, services, tail, follow, stream):
|
|
try:
|
|
return self.docker.compose.logs(services=services, tail=tail, follow=follow, stream=stream)
|
|
except DockerException as e:
|
|
raise DeployerException(e)
|
|
|
|
def run(self, image, command, user, volumes, entrypoint=None):
|
|
try:
|
|
return self.docker.run(image=image, command=command, user=user, volumes=volumes, entrypoint=entrypoint)
|
|
except DockerException as e:
|
|
raise DeployerException(e)
|