Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flyctl/cmd/fly_machine_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ fly machine create <image> [command] [flags]
--autostop string[="stop"] Automatically stop a Machine when there are no network requests for it. Options include 'off', 'stop', and 'suspend'. (default "off")
--build-depot Build your image with depot.dev
--build-nixpacks Build your image with nixpacks
--cachedrive-size string Cache drive size in MB. Accepts a plain number (in MB) or a human-readable size (e.g. 512mb, 10gb). Set to 0 to disable.
-c, --config string Path to application configuration file
--detach Return immediately instead of monitoring deployment progress
--dockerfile string The path to a Dockerfile. Defaults to the Dockerfile in the working directory.
Expand All @@ -37,7 +38,6 @@ fly machine create <image> [command] [flags]
--restart string Set the restart policy for a Machine. Options include 'no', 'always', and 'on-failure'.
Default is 'on-failure' 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-fs-size string Root filesystem size in GB. Accepts a plain number (in GB) or a human-readable size (e.g. 2gb, 5gb). Sets the size of the filesystem itself, independent of the rootfs volume size. Set to 0 to unset.
--rootfs-persist string Whether to persist the root filesystem across restarts. Options include 'never', 'always', and 'restart'.
--rootfs-size string Root filesystem size in GB. Accepts a plain number (in GB) or a human-readable size (e.g. 2gb, 5gb). Uses an overlayfs to allow the root filesystem to exceed its default size. Set to 0 to unset.
--schedule string Schedule a Machine run at hourly, daily, weekly and monthly intervals
Expand Down
2 changes: 1 addition & 1 deletion flyctl/cmd/fly_machine_run.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ fly machine run <image> [command] [flags]
--autostop string[="stop"] Automatically stop a Machine when there are no network requests for it. Options include 'off', 'stop', and 'suspend'. (default "off")
--build-depot Build your image with depot.dev
--build-nixpacks Build your image with nixpacks
--cachedrive-size string Cache drive size in MB. Accepts a plain number (in MB) or a human-readable size (e.g. 512mb, 10gb). Set to 0 to disable.
--command string Used with --shell. The command to run, if we're shelling into the Machine now (in case you don't have bash). (default "/bin/bash")
-c, --config string Path to application configuration file
--container string Container to update with the new image, files, etc; defaults to "app" or the first container in the config.
Expand All @@ -39,7 +40,6 @@ fly machine run <image> [command] [flags]
--restart string Set the restart policy for a Machine. Options include 'no', 'always', and 'on-failure'.
Default is 'on-failure' 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-fs-size string Root filesystem size in GB. Accepts a plain number (in GB) or a human-readable size (e.g. 2gb, 5gb). Sets the size of the filesystem itself, independent of the rootfs volume size. Set to 0 to unset.
--rootfs-persist string Whether to persist the root filesystem across restarts. Options include 'never', 'always', and 'restart'.
--rootfs-size string Root filesystem size in GB. Accepts a plain number (in GB) or a human-readable size (e.g. 2gb, 5gb). Uses an overlayfs to allow the root filesystem to exceed its default size. Set to 0 to unset.
--schedule string Schedule a Machine run at hourly, daily, weekly and monthly intervals
Expand Down
2 changes: 1 addition & 1 deletion flyctl/cmd/fly_machine_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ fly machine update [machine_id] [flags]
--build-depot Build your image with depot.dev
--build-nixpacks Build your image with nixpacks
--buildkit Deploy using buildkit-based remote builder
--cachedrive-size string Cache drive size in MB. Accepts a plain number (in MB) or a human-readable size (e.g. 512mb, 10gb). Set to 0 to disable.
-C, --command string Command to run
-c, --config string Path to application configuration file
--container string Container to update with the new image, files, etc; defaults to "app" or the first container in the config.
Expand All @@ -37,7 +38,6 @@ 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-failure'.
Default is 'on-failure' for Machines created by 'fly deploy' and Machines with a schedule. Default is 'always' for Machines created by 'fly m run'.
--rootfs-fs-size string Root filesystem size in GB. Accepts a plain number (in GB) or a human-readable size (e.g. 2gb, 5gb). Sets the size of the filesystem itself, independent of the rootfs volume size. Set to 0 to unset.
--rootfs-persist string Whether to persist the root filesystem across restarts. Options include 'never', 'always', and 'restart'.
--rootfs-size string Root filesystem size in GB. Accepts a plain number (in GB) or a human-readable size (e.g. 2gb, 5gb). Uses an overlayfs to allow the root filesystem to exceed its default size. Set to 0 to unset.
--schedule string Schedule a Machine run at hourly, daily, weekly and monthly intervals
Expand Down
Loading