From 339c0526ada96552eeefffd282aa0155a1ffb7e4 Mon Sep 17 00:00:00 2001 From: Chaz Larson Date: Fri, 15 Mar 2024 16:11:30 -0500 Subject: [PATCH] Update your-own-containers.md --- docs/advanced/your-own-containers.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/advanced/your-own-containers.md b/docs/advanced/your-own-containers.md index 520ea184d..40946bedd 100644 --- a/docs/advanced/your-own-containers.md +++ b/docs/advanced/your-own-containers.md @@ -14,7 +14,7 @@ When you add a container manually as outlined on this page, neither of those thi If you want to create a role file that you can install like the built-in applications, see [here](../sandbox/basics.md#contributing-to-sandbox-apps). -IMPORTANT: `APPNAME` is a placeholder. *You need to change that* **everywhere it appears** to match the application you are installing. +IMPORTANT: IN the examples below, `APPNAME`, `APPLICATION_PORT`, `/CONFIG`, and `DOCKER/IMAGE:TAG` are _placeholders_. *You need to change those* **everywhere they appear** to match the application you are installing. ## Docker Compose @@ -25,7 +25,7 @@ IMPORTANT: `APPNAME` is a placeholder. *You need to change that* **everywhere i APPNAME: restart: unless-stopped # (1)! container_name: APPNAME # (2)! - image: docker/image:tag # (3)! + image: DOCKER/IMAGE:TAG # (3)! hostname: APPNAME # (4)! environment: # (5)! - PUID=1000 @@ -124,7 +124,7 @@ IMPORTANT: `APPNAME` is a placeholder. *You need to change that* **everywhere i APPNAME: restart: unless-stopped # (1)! container_name: APPNAME # (2)! - image: docker/image:tag # (3)! + image: DOCKER/IMAGE:TAG # (3)! hostname: APPNAME # (4)! environment: # (5)! - PUID=1000 @@ -284,7 +284,7 @@ IMPORTANT: `APPNAME` is a placeholder. *You need to change that* **everywhere i APPNAME: restart: unless-stopped # (1)! container_name: APPNAME # (2)! - image: docker/image:tag # (3)! + image: DOCKER/IMAGE:TAG # (3)! hostname: APPNAME # (4)! environment: # (5)! - PUID=1000 @@ -383,7 +383,7 @@ IMPORTANT: `APPNAME` is a placeholder. *You need to change that* **everywhere i APPNAME: restart: unless-stopped # (1)! container_name: APPNAME # (2)! - image: docker/image:tag # (3)! + image: DOCKER/IMAGE:TAG # (3)! hostname: APPNAME # (4)! environment: # (5)! - PUID=1000