Skip to content

Commit

Permalink
Update your-own-containers.md
Browse files Browse the repository at this point in the history
  • Loading branch information
chazlarson authored Mar 15, 2024
1 parent c0ee8ae commit 339c052
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/advanced/your-own-containers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 339c052

Please sign in to comment.