Skip to content
github-actions[bot] edited this page Feb 12, 2026 · 2 revisions

fm self

Self commands.

Usage:

$ fm self [OPTIONS] COMMAND [ARGS]...

Options:

  • --help: Show this message and exit.

Commands:

  • update: Check for and install frappe-manager updates.
  • update-images: Pull latest FM stack docker images.
  • compose: Run docker compose commands with auto-detected compose files.

fm self update

Check for and install frappe-manager updates.

Usage:

$ fm self update [OPTIONS]

Options:

  • -y, --yes: Skip confirmation prompt and proceed with update

Examples:

Update fm to the latest version available on pypi

fm self update

fm self update-images

Pull latest FM stack docker images.

Usage:

$ fm self update-images

Examples:

Update all Frappe docker images to latest versions

fm self update-images

fm self compose

Run docker compose commands with auto-detected compose files.

Automatically finds and includes all docker-compose*.yml files in the bench directory.

Usage:

$ fm self compose

Examples:

Show running containers for mybench

fm self compose mybench ps

Start containers in detached mode

fm self compose mybench up -d

Follow logs for frappe service

fm self compose mybench logs -f frappe

Execute bash in frappe container

fm self compose mybench exec frappe bash

Restart specific service

fm self compose mybench restart frappe

View container resource usage

fm self compose mybench stats

Clone this wiki locally