From 013698caadc2b342e2528336de5e9f3e263c6b25 Mon Sep 17 00:00:00 2001 From: owine Date: Sat, 9 Mar 2024 12:41:09 -0600 Subject: [PATCH] Your-Own-Containers: Lint (#288) --- docs/advanced/your-own-containers.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/docs/advanced/your-own-containers.md b/docs/advanced/your-own-containers.md index 6ea0800f3..520ea184d 100644 --- a/docs/advanced/your-own-containers.md +++ b/docs/advanced/your-own-containers.md @@ -429,13 +429,11 @@ IMPORTANT: `APPNAME` is a placeholder. *You need to change that* **everywhere i Once you have a docker-compose file as described above, you will use standard docker commands to create and run the container. If the file is named `docker-compose.yml` and is located in the current working directory: -``` -docker compose up -d -``` + + docker compose up -d If the file has some other name or is located elsewhere in the file system: -``` -docker compose up -d -d /path/to/something.yml -``` + + docker compose up -d -d /path/to/something.yml Remember to create the `APPNAME.domain.tld` subdomain at cloudflare [or wherever your DNS is] and create the required `/opt/APPNAME` directory tree prior to running that command.