From a830f288d8d3f1028162a11a653b1b068fe2d07f Mon Sep 17 00:00:00 2001 From: Fitzroy Zeng <90667163+FitzroyZ@users.noreply.github.com> Date: Tue, 21 Oct 2025 15:22:06 +0800 Subject: [PATCH] Fix typo in Docker compose command (#1724) --- docs/container-setup/02-build-setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/container-setup/02-build-setup.md b/docs/container-setup/02-build-setup.md index 55034165..0e3f0e36 100644 --- a/docs/container-setup/02-build-setup.md +++ b/docs/container-setup/02-build-setup.md @@ -102,7 +102,7 @@ Edit `custom.env` to customize variables for your setup. The template includes c Combine the base compose file with appropriate overrides for your use case. This example adds MariaDB, Redis, and exposes ports on `:8080`: ```bash -docker compose --env.file example.env \ +docker compose --env-file example.env \ -f compose.yaml \ -f overrides/compose.mariadb.yaml \ -f overrides/compose.redis.yaml \