From 66e4d0ff7dd2c8210e7515a7aafffd7c745f6366 Mon Sep 17 00:00:00 2001 From: Fitzroy Zeng <90667163+FitzroyZ@users.noreply.github.com> Date: Fri, 17 Oct 2025 13:08:21 +0800 Subject: [PATCH] Fix typo in Docker compose command --- 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 \