1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-22 04:43:00 +00:00

Fix for docker-compose options

This commit is contained in:
Jörn-Michael Miehe 2021-11-13 03:35:52 +01:00
parent 7ee7d5f300
commit 0f7c7f6955

View file

@ -21,6 +21,9 @@ from ..instance import Instance, Project
"cmd", "cmd",
KiwiCommandType.PROJECT, KiwiCommandType.PROJECT,
short_help="Run docker-compose command", short_help="Run docker-compose command",
# ignore arguments looking like options
# just pass everything down to docker-compose
context_settings={"ignore_unknown_options": True},
) )
class CMD(KiwiCommand): class CMD(KiwiCommand):
"""Run raw docker-compose command in a project""" """Run raw docker-compose command in a project"""