2026-05-12 20:09:44 -04:00
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
2025-09-16 19:39:01 -04:00
|
|
|
##@Version : 202509161151-git
|
2025-09-16 10:23:58 -04:00
|
|
|
# @@Author : CasjaysDev
|
2025-09-16 19:39:01 -04:00
|
|
|
# @@Contact : CasjaysDev <docker-admin@casjaysdev.pro>
|
2025-09-16 10:23:58 -04:00
|
|
|
# @@License : MIT
|
2025-09-16 19:39:01 -04:00
|
|
|
# @@Copyright : Copyright 2025 CasjaysDev
|
|
|
|
|
# @@Created : Tue Sep 16 11:51:10 AM EDT 2025
|
2025-09-16 10:23:58 -04:00
|
|
|
# @@File : .env.scripts
|
|
|
|
|
# @@Description : Variables for gen-dockerfile and buildx scripts
|
2026-05-12 20:09:44 -04:00
|
|
|
# @@Changelog : newScript
|
|
|
|
|
# @@TODO : Refactor code
|
|
|
|
|
# @@Other : N/A
|
|
|
|
|
# @@Resource : N/A
|
|
|
|
|
# @@Terminal App : yes
|
|
|
|
|
# @@sudo/root : yes
|
|
|
|
|
# @@Template : templates/dockerfiles/dotenv.template
|
|
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
|
# shellcheck disable=SC1001,SC1003,SC2001,SC2003,SC2016,SC2031,SC2090,SC2115,SC2120,SC2155,SC2199,SC2229,SC2317,SC2329
|
|
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
2025-09-16 19:39:01 -04:00
|
|
|
# entrypoint Settings
|
|
|
|
|
DOCKER_ENTYPOINT_PORTS_WEB="${DOCKER_ENTYPOINT_PORTS_WEB}"
|
|
|
|
|
DOCKER_ENTYPOINT_PORTS_SRV="${DOCKER_ENTYPOINT_PORTS_SRV}"
|
|
|
|
|
DOCKER_ENTYPOINT_HEALTH_APPS="$DOCKER_ENTYPOINT_HEALTH_APPS"
|
|
|
|
|
DOCKER_ENTYPOINT_HEALTH_ENDPOINTS="$DOCKER_ENTYPOINT_HEALTH_ENDPOINTS"
|
2026-05-12 20:09:44 -04:00
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
2025-09-16 19:39:01 -04:00
|
|
|
# Dockerfile info
|
|
|
|
|
ENV_DOCKERFILE="Dockerfile"
|
2026-05-12 20:09:44 -04:00
|
|
|
# ENV_REGISTRY_REPO: Registry repository/image name
|
|
|
|
|
ENV_REGISTRY_REPO="vim"
|
2025-09-16 19:39:01 -04:00
|
|
|
ENV_USE_TEMPLATE="alpine"
|
2026-05-12 20:09:44 -04:00
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
2025-09-16 19:39:01 -04:00
|
|
|
# Maintainer info
|
2026-05-12 20:09:44 -04:00
|
|
|
ENV_REGISTRY_ORG="casjaysdevdocker"
|
2025-09-16 19:39:01 -04:00
|
|
|
ENV_VENDOR="CasjaysDev"
|
|
|
|
|
ENV_AUTHOR="CasjaysDev"
|
|
|
|
|
ENV_MAINTAINER="CasjaysDev <docker-admin@casjaysdev.pro>"
|
2026-05-12 20:09:44 -04:00
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
|
# Repository URLs (Full URLs)
|
|
|
|
|
# ENV_GIT_REPO_URL: Complete Git repository URL for source code
|
2025-09-16 19:39:01 -04:00
|
|
|
ENV_GIT_REPO_URL="https://github.com/casjaysdevdocker/vim"
|
2026-05-12 20:09:44 -04:00
|
|
|
# ENV_REGISTRY_URL: Registry provider base URL (for example https://docker.io)
|
|
|
|
|
ENV_REGISTRY_URL="https://docker.io"
|
|
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
|
# Push Configuration
|
|
|
|
|
# ENV_REGISTRY_PUSH: Complete push destination derived from registry/org/repo
|
|
|
|
|
ENV_REGISTRY_PUSH="casjaysdevdocker/vim"
|
|
|
|
|
# ENV_IMAGE_TAG: Default tag for the image
|
2025-09-16 19:39:01 -04:00
|
|
|
ENV_IMAGE_TAG="latest"
|
2026-05-12 20:09:44 -04:00
|
|
|
# ENV_ADD_TAGS: Additional tags, comma-separated (USE_DATE = auto date tag)
|
2025-09-16 19:39:01 -04:00
|
|
|
ENV_ADD_TAGS=""
|
2026-05-12 20:09:44 -04:00
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
|
# Additional push destinations (if needed)
|
2025-09-16 19:39:01 -04:00
|
|
|
ENV_ADD_IMAGE_PUSH=""
|
2026-05-12 20:09:44 -04:00
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
|
# Pull Configuration
|
|
|
|
|
# ENV_PULL_URL: Source image to pull from (base image)
|
2025-09-16 19:39:01 -04:00
|
|
|
ENV_PULL_URL="casjaysdev/alpine"
|
2026-05-12 20:09:44 -04:00
|
|
|
# ENV_DISTRO_TAG: Tag for the pull source image
|
2025-09-16 19:39:01 -04:00
|
|
|
ENV_DISTRO_TAG="${IMAGE_VERSION}"
|
2026-05-12 20:09:44 -04:00
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
2025-09-16 19:39:01 -04:00
|
|
|
# Env
|
|
|
|
|
SERVICE_PORT=""
|
|
|
|
|
EXPOSE_PORTS=""
|
2026-05-12 20:09:44 -04:00
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
|
# IF using a lanuage such as go, php, rust, ruby, etc set the version here.
|
|
|
|
|
LANG_VERSION=""
|
|
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
2025-09-16 19:39:01 -04:00
|
|
|
# Versions
|
|
|
|
|
PHP_VERSION="system"
|
|
|
|
|
NODE_VERSION="system"
|
|
|
|
|
NODE_MANAGER="system"
|
2026-05-12 20:09:44 -04:00
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
2025-09-16 19:39:01 -04:00
|
|
|
# Default directories
|
|
|
|
|
WWW_ROOT_DIR="/usr/local/share/httpd/default"
|
|
|
|
|
DEFAULT_FILE_DIR="/usr/local/share/template-files"
|
|
|
|
|
DEFAULT_DATA_DIR="/usr/local/share/template-files/data"
|
|
|
|
|
DEFAULT_CONF_DIR="/usr/local/share/template-files/config"
|
|
|
|
|
DEFAULT_TEMPLATE_DIR="/usr/local/share/template-files/defaults"
|
2026-05-12 20:09:44 -04:00
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
2025-09-16 19:39:01 -04:00
|
|
|
ENV_PACKAGES=""
|
2026-05-12 20:09:44 -04:00
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
|
# ex: ts=2 sw=2 et filetype=sh
|
|
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - -
|