File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 5757
5858$CLI compose \
5959 --docker-compose " $COMPOSE_TMP " \
60- --name tproxy \
61- --kms \
60+ --name kms \
61+ --local-key-provider \
6262 --public-logs \
6363 --public-sysinfo \
6464 --output .app-compose.json
Original file line number Diff line number Diff line change @@ -415,6 +415,7 @@ def main():
415415 compose_parser .add_argument ('--prelaunch-script' , default = None , help = 'Path to prelaunch script' )
416416 compose_parser .add_argument ('--kms' , action = 'store_true' , help = 'Enable KMS' )
417417 compose_parser .add_argument ('--tproxy' , action = 'store_true' , help = 'Enable TProxy' )
418+ compose_parser .add_argument ('--local-key-provider' , action = 'store_true' , help = 'Enable local key provider' )
418419 compose_parser .add_argument ('--public-logs' , action = 'store_true' , help = 'Enable public logs' )
419420 compose_parser .add_argument ('--public-sysinfo' , action = 'store_true' , help = 'Enable public sysinfo' )
420421 compose_parser .add_argument ('--output' , required = True , help = 'Path to output app-compose.json file' )
@@ -456,6 +457,7 @@ def main():
456457 docker_compose = args .docker_compose ,
457458 kms_enabled = args .kms ,
458459 tproxy_enabled = args .tproxy ,
460+ local_key_provider_enabled = args .local_key_provider ,
459461 public_logs = args .public_logs ,
460462 public_sysinfo = args .public_sysinfo ,
461463 output = args .output
You can’t perform that action at this time.
0 commit comments