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.