You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@click.option('--ca-certs-dir-path', default=None, help='Path to ca certs directory used to sign SSL certs. Defaults to the ca_certs dir of the context.')
597
594
@click.option('--ca-certs-install-confirm', default=None, type=click.Choice(['y', 'Y', 'n', 'N']), help='Confirm answer to CA certificate installation prompt.')
598
595
@click.option('--certs-dir-path', help='Path to certs directory. Defaults to the certs dir of the context.')
599
-
@click.option('--containerized', is_flag=True, help='Set if run from within a container.')
596
+
@click.option('--containerized', is_flag=True, hidden=True, help='Set if run from within a container.')
600
597
@click.option('--context-dir-path', default=data_dir.context_dir_path, help='Path to Stoobly data directory.')
601
598
@click.option('--detached', is_flag=True, help='If set, will run the highest priority service in the background.')
602
599
@click.option('--dry-run', default=False, is_flag=True, help='If set, prints commands instead of running them.')
@@ -705,7 +702,7 @@ def up(**kwargs):
705
702
Logger.instance(LOG_ID).info(f"To view logs, run `stoobly-agent scaffold workflow logs{options_str}{kwargs['workflow_name']}`")
@click.option('--app-dir-path', default=context_dir_path, help='Path to application directory.')
718
715
@click.option('--ca-certs-dir-path', default=None, help='Path to ca certs directory used to sign SSL certs. Defaults to the ca_certs dir of the context.')
719
716
@click.option('--certs-dir-path', help='Path to certs directory. Defaults to the certs dir of the context.')
720
-
@click.option('--containerized', is_flag=True, help='Set if run from within a container.')
717
+
@click.option('--containerized', is_flag=True, hidden=True, help='Set if run from within a container.')
721
718
@click.option('--context-dir-path', default=data_dir.context_dir_path, help='Path to Stoobly data directory.')
722
719
@click.option('--service', multiple=True, help='Select specific services. Defaults to all.')
723
720
@click.argument('workflow_name')
@@ -736,7 +733,7 @@ def mkcert(**kwargs):
736
733
help="Sync normalize rewrite rules from service upstream hostname, port, and scheme"
737
734
)
738
735
@click.option('--app-dir-path', default=context_dir_path, help='Path to application directory.')
739
-
@click.option('--containerized', is_flag=True, help='Set if run from within a container.')
736
+
@click.option('--containerized', is_flag=True, hidden=True, help='Set if run from within a container.')
740
737
@click.option('--context-dir-path', default=data_dir.context_dir_path, help='Path to Stoobly data directory.')
741
738
@click.option('--service', multiple=True, help='Select specific services. Defaults to all.')
742
739
@click.argument('workflow_name')
@@ -756,7 +753,7 @@ def rewrite(**kwargs):
756
753
help="Configure include filter rules for workflow service(s)"
757
754
)
758
755
@click.option('--app-dir-path', default=context_dir_path, help='Path to application directory.')
759
-
@click.option('--containerized', is_flag=True, help='Set if run from within a container.')
756
+
@click.option('--containerized', is_flag=True, hidden=True, help='Set if run from within a container.')
760
757
@click.option('--context-dir-path', default=data_dir.context_dir_path, help='Path to Stoobly data directory.')
761
758
@click.option('--service', multiple=True, help='Select specific services. Defaults to all.')
0 commit comments