-
Notifications
You must be signed in to change notification settings - Fork 97
self
github-actions[bot] edited this page Feb 12, 2026
·
2 revisions
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.
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 updatePull latest FM stack docker images.
Usage:
$ fm self update-imagesExamples:
Update all Frappe docker images to latest versions
fm self update-imagesRun docker compose commands with auto-detected compose files.
Automatically finds and includes all docker-compose*.yml files in the bench directory.
Usage:
$ fm self composeExamples:
Show running containers for mybench
fm self compose mybench psStart containers in detached mode
fm self compose mybench up -dFollow logs for frappe service
fm self compose mybench logs -f frappeExecute bash in frappe container
fm self compose mybench exec frappe bashRestart specific service
fm self compose mybench restart frappeView container resource usage
fm self compose mybench stats