LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

apx-stacks

Manage stack configurations for apx subsystems

TLDR

Interactively create a new stack configuration
$ apx stacks new
copy
Interactively update a stack configuration
$ apx stacks update [name]
copy
List all available stack configurations
$ apx stacks list
copy
Remove a specified stack configuration
$ apx stacks rm --name [name]
copy
Import a stack configuration from file
$ apx stacks import --input [path/to/stack.yml]
copy
Export a stack configuration to file
$ apx stacks export --name [name] --output [path/to/output_file]
copy

SYNOPSIS

apx stacks command [options]

DESCRIPTION

apx stacks manages stack configurations in apx. A stack defines a combination of a base container image and a package manager, serving as the foundation for subsystems.
User-created stack configurations are stored in ~/.local/share/apx/stacks. Stacks can be shared between systems by exporting and importing YAML configuration files.

PARAMETERS

--name string

Specify the stack name
--input path
Path to the stack configuration file to import
--output path
Path for the exported stack file (defaults to current directory)

SUBCOMMANDS

new

Create a new stack configuration interactively
update
Modify an existing stack configuration
list
Display all available stack configurations
rm
Remove a stack configuration
import
Import a stack from a YAML file
export
Export a stack to a YAML file

SEE ALSO

Copied to clipboard
Kai