Files
jekyll/.env.scripts
T

84 lines
3.8 KiB
Bash
Raw Normal View History

2026-05-12 20:06:58 -04:00
# - - - - - - - - - - - - - - - - - - - - - - - - -
2025-11-29 11:07:00 -05:00
##@Version : 202511291200-git
2023-09-01 14:24:51 -04:00
# @@Author : CasjaysDev
# @@Contact : CasjaysDev <docker-admin@casjaysdev.pro>
# @@License : MIT
2025-09-16 19:37:33 -04:00
# @@Copyright : Copyright 2025 CasjaysDev
2025-11-29 11:07:00 -05:00
# @@Created : Fri Nov 29 12:00:00 PM EST 2025
2023-09-01 14:24:51 -04:00
# @@File : .env.scripts
# @@Description : Variables for gen-dockerfile and buildx scripts
2025-11-29 11:07:00 -05:00
# @@Changelog : newScript
# @@TODO : Refactor code
# @@Other : N/A
# @@Resource : N/A
# @@Terminal App : yes
# @@sudo/root : yes
# @@Template : templates/dockerfiles/dotenv.template
2026-05-12 20:06:58 -04:00
# - - - - - - - - - - - - - - - - - - - - - - - - -
# shellcheck disable=SC1001,SC1003,SC2001,SC2003,SC2016,SC2031,SC2090,SC2115,SC2120,SC2155,SC2199,SC2229,SC2317,SC2329
# - - - - - - - - - - - - - - - - - - - - - - - - -
2025-09-16 19:37:33 -04:00
# entrypoint Settings
2026-05-12 20:06:58 -04:00
DOCKER_ENTYPOINT_PORTS_WEB="${DOCKER_ENTYPOINT_PORTS_WEB}"
2025-09-16 19:37:33 -04:00
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:06:58 -04:00
# - - - - - - - - - - - - - - - - - - - - - - - - -
2023-09-01 14:24:51 -04:00
# Dockerfile info
ENV_DOCKERFILE="Dockerfile"
2026-05-12 20:06:58 -04:00
# ENV_REGISTRY_REPO: Registry repository/image name
ENV_REGISTRY_REPO="jekyll"
2023-09-01 14:24:51 -04:00
ENV_USE_TEMPLATE="alpine"
2026-05-12 20:06:58 -04:00
# - - - - - - - - - - - - - - - - - - - - - - - - -
2023-09-01 14:24:51 -04:00
# Maintainer info
2026-05-12 20:06:58 -04:00
ENV_REGISTRY_ORG="casjaysdev"
2023-09-01 14:24:51 -04:00
ENV_VENDOR="CasjaysDev"
ENV_AUTHOR="CasjaysDev"
ENV_MAINTAINER="CasjaysDev <docker-admin@casjaysdev.pro>"
2026-05-12 20:06:58 -04:00
# - - - - - - - - - - - - - - - - - - - - - - - - -
2025-11-29 11:07:00 -05:00
# Repository URLs (Full URLs)
2026-05-12 20:06:58 -04:00
# ENV_GIT_REPO_URL: Complete Git repository URL for source code
2025-11-29 11:07:00 -05:00
ENV_GIT_REPO_URL="https://github.com/casjaysdev/jekyll"
2026-05-12 20:06:58 -04:00
# ENV_REGISTRY_URL: Registry provider base URL (for example https://docker.io)
ENV_REGISTRY_URL="https://docker.io"
# - - - - - - - - - - - - - - - - - - - - - - - - -
2025-11-29 11:07:00 -05:00
# Push Configuration
2026-05-12 20:06:58 -04:00
# ENV_REGISTRY_PUSH: Complete push destination derived from registry/org/repo
ENV_REGISTRY_PUSH="casjaysdev/jekyll"
# ENV_IMAGE_TAG: Default tag for the image
2023-09-01 14:24:51 -04:00
ENV_IMAGE_TAG="latest"
2026-05-12 20:06:58 -04:00
# ENV_ADD_TAGS: Additional tags, comma-separated (USE_DATE = auto date tag)
2025-11-29 11:07:00 -05:00
ENV_ADD_TAGS="USE_DATE"
2026-05-12 20:06:58 -04:00
# - - - - - - - - - - - - - - - - - - - - - - - - -
2025-11-29 11:07:00 -05:00
# Additional push destinations (if needed)
2025-09-16 19:37:33 -04:00
ENV_ADD_IMAGE_PUSH=""
2026-05-12 20:06:58 -04:00
# - - - - - - - - - - - - - - - - - - - - - - - - -
2025-11-29 11:07:00 -05:00
# Pull Configuration
2026-05-12 20:06:58 -04:00
# ENV_PULL_URL: Source image to pull from (base image)
2025-11-29 11:07:00 -05:00
ENV_PULL_URL="ruby"
2026-05-12 20:06:58 -04:00
# ENV_DISTRO_TAG: Tag for the pull source image
ENV_DISTRO_TAG="${IMAGE_VERSION}"
# - - - - - - - - - - - - - - - - - - - - - - - - -
2023-09-01 14:24:51 -04:00
# Env
2025-11-29 11:07:00 -05:00
SERVICE_PORT="4000"
EXPOSE_PORTS="4000"
2026-05-12 20:06:58 -04:00
# - - - - - - - - - - - - - - - - - - - - - - - - -
2025-11-29 11:07:00 -05:00
# IF using a lanuage such as go, php, rust, ruby, etc set the version here.
LANG_VERSION="latest"
2026-05-12 20:06:58 -04:00
# - - - - - - - - - - - - - - - - - - - - - - - - -
2023-09-01 14:24:51 -04:00
# Versions
PHP_VERSION="system"
NODE_VERSION="system"
NODE_MANAGER="system"
2026-05-12 20:06:58 -04:00
# - - - - - - - - - - - - - - - - - - - - - - - - -
2023-09-01 14:24:51 -04:00
# Default directories
2025-02-03 15:19:43 -05:00
WWW_ROOT_DIR="/usr/local/share/httpd/default"
2023-09-01 14:24:51 -04:00
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:06:58 -04:00
# - - - - - - - - - - - - - - - - - - - - - - - - -
2025-11-29 11:07:00 -05:00
ENV_PACKAGES="bash-completion git curl wget sudo unzip iproute2 ssmtp openssl jq tzdata mailcap ncurses util-linux pciutils usbutils coreutils binutils findutils grep rsync zip tini py3-pip procps net-tools coreutils sed gawk grep attr findutils readline lsof less curl shadow certbot ca-certificates build-base ruby-dev"
2026-05-12 20:06:58 -04:00
# - - - - - - - - - - - - - - - - - - - - - - - - -
2025-11-29 11:07:00 -05:00
# ex: ts=2 sw=2 et filetype=sh
2026-05-12 20:06:58 -04:00
# - - - - - - - - - - - - - - - - - - - - - - - - -