docs: Update 3 files
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 51s

This commit is contained in:
j
2025-12-18 21:03:24 +13:00
parent 9cf6ab2305
commit b28e56eaba
3 changed files with 19 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
#!/bin/bash
source "${AGENT_PATH}/common.sh"
_check_required_env_vars "CONTAINER_NAME" "IMAGE_REGISTRY" "IMAGE_REPO" "IMAGE_TAG" "DATA_PATH" "HTTP_PORT" "PUID" "PGID" "TZ"
_check_required_env_vars "CONTAINER_NAME" "IMAGE_REGISTRY" "IMAGE_REPO" "IMAGE_TAG" "DATA_PATH" "HTTP_PORT" "PUID" "PGID" "TZ" "DB_TYPE"
# START SCRIPT
# The start script is required for all templates.
@@ -15,6 +15,7 @@ DOCKER_RUN_CMD="docker run -d \
-e PUID=${PUID} \
-e PGID=${PGID} \
-e TZ=${TZ} \
-e DB_TYPE=${DB_TYPE} \
${IMAGE_REGISTRY}/${IMAGE_REPO}:${IMAGE_TAG}"
if ! _create_and_start_container "$DOCKER_RUN_CMD" "$CONTAINER_NAME"; then