From cc6206f8242451db43f8b8b0a7de3e2da8235d77 Mon Sep 17 00:00:00 2001 From: thefoxcost Date: Fri, 28 Nov 2025 13:38:53 -0800 Subject: [PATCH] Added a missing backslash to th build command --- app.sh | 0 docs/DOCKER.md | 17 +++++++++-------- 2 files changed, 9 insertions(+), 8 deletions(-) create mode 100644 app.sh diff --git a/app.sh b/app.sh new file mode 100644 index 0000000..e69de29 diff --git a/docs/DOCKER.md b/docs/DOCKER.md index 37169d2..f85ffc2 100644 --- a/docs/DOCKER.md +++ b/docs/DOCKER.md @@ -17,14 +17,15 @@ $ cd VERT/ Then build a Docker image with: ```shell -$ docker build -t vert-sh/vert \ - --build-arg PUB_ENV=production \ - --build-arg PUB_HOSTNAME=vert.sh \ - --build-arg PUB_PLAUSIBLE_URL=https://plausible.example.com \ - --build-arg PUB_VERTD_URL=https://vertd.vert.sh \ - --build-arg PUB_DONATION_URL=https://donations.vert.sh \ - --build-arg PUB_DISABLE_ALL_EXTERNAL_REQUESTS=false - --build-arg PUB_STRIPE_KEY="" . +docker build -t vert-sh/vert \ + --build-arg PUB_ENV=production \ + --build-arg PUB_HOSTNAME=vert.sh \ + --build-arg PUB_PLAUSIBLE_URL=https://plausible.example.com \ + --build-arg PUB_VERTD_URL=https://vertd.vert.sh \ + --build-arg PUB_DONATION_URL=https://donations.vert.sh \ + --build-arg PUB_DISABLE_ALL_EXTERNAL_REQUESTS=false \ + --build-arg PUB_STRIPE_KEY="" \ + . ``` You can then run it by using: