diff --git a/flyctl/cmd/fly_machine_create.md b/flyctl/cmd/fly_machine_create.md index 8167da054d..c116723970 100644 --- a/flyctl/cmd/fly_machine_create.md +++ b/flyctl/cmd/fly_machine_create.md @@ -37,6 +37,8 @@ fly machine create [command] [flags] --restart string Set the restart policy for a Machine. Options include 'no', 'always', and 'on-fail'. Default is 'on-fail' for Machines created by 'fly deploy' and Machines with a schedule. Default is 'always' for Machines created by 'fly m run'. --rm Automatically remove the Machine when it exits. Sets the restart-policy to 'never' if not otherwise specified. + --rootfs-persist string Whether to persist the root filesystem across restarts. Options include 'never', 'always', and 'restart'. + --rootfs-size int Root filesystem size in GB. Uses an overlayfs to allow the root filesystem to exceed its default size. --schedule string Schedule a Machine run at hourly, daily, weekly and monthly intervals --skip-dns-registration Do not register the machine's 6PN IP with the internal DNS system --standby-for strings For Machines without services, a comma separated list of Machine IDs to act as standby for. diff --git a/flyctl/cmd/fly_machine_run.md b/flyctl/cmd/fly_machine_run.md index 54b370419d..148796e526 100644 --- a/flyctl/cmd/fly_machine_run.md +++ b/flyctl/cmd/fly_machine_run.md @@ -39,6 +39,8 @@ fly machine run [command] [flags] --restart string Set the restart policy for a Machine. Options include 'no', 'always', and 'on-fail'. Default is 'on-fail' for Machines created by 'fly deploy' and Machines with a schedule. Default is 'always' for Machines created by 'fly m run'. --rm Automatically remove the Machine when it exits. Sets the restart-policy to 'never' if not otherwise specified. + --rootfs-persist string Whether to persist the root filesystem across restarts. Options include 'never', 'always', and 'restart'. + --rootfs-size int Root filesystem size in GB. Uses an overlayfs to allow the root filesystem to exceed its default size. --schedule string Schedule a Machine run at hourly, daily, weekly and monthly intervals --shell Open a shell on the Machine once created (implies --it --rm). If no app is specified, a temporary app is created just for this Machine and destroyed when the Machine is destroyed. See also --command and --user. --skip-dns-registration Do not register the machine's 6PN IP with the internal DNS system diff --git a/flyctl/cmd/fly_machine_update.md b/flyctl/cmd/fly_machine_update.md index 0613e119a8..c4e18169d1 100644 --- a/flyctl/cmd/fly_machine_update.md +++ b/flyctl/cmd/fly_machine_update.md @@ -37,6 +37,8 @@ fly machine update [machine_id] [flags] To remove a port mapping use '-' as handler. For example: --port 80/tcp:- --restart string Set the restart policy for a Machine. Options include 'no', 'always', and 'on-fail'. Default is 'on-fail' for Machines created by 'fly deploy' and Machines with a schedule. Default is 'always' for Machines created by 'fly m run'. + --rootfs-persist string Whether to persist the root filesystem across restarts. Options include 'never', 'always', and 'restart'. + --rootfs-size int Root filesystem size in GB. Uses an overlayfs to allow the root filesystem to exceed its default size. --schedule string Schedule a Machine run at hourly, daily, weekly and monthly intervals --skip-dns-registration Do not register the machine's 6PN IP with the internal DNS system --skip-health-checks Updates machine without waiting for health checks.