Files
jekyll/.env.scripts
T

76 lines
3.6 KiB
Bash
Raw Normal View History

2023-09-01 14:24:51 -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
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# shellcheck disable=SC1001,SC1003,SC2001,SC2003,SC2016,SC2031,SC2120,SC2155,SC2199,SC2317,SC2329
2023-09-01 14:24:51 -04:00
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2025-09-16 19:37:33 -04:00
# entrypoint Settings
2025-11-29 11:07:00 -05:00
DOCKER_ENTYPOINT_PORTS_WEB="${DOCKER_ENTYPOINT_PORTS_WEB:-4000}"
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"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2023-09-01 14:24:51 -04:00
# Dockerfile info
ENV_DOCKERFILE="Dockerfile"
ENV_IMAGE_NAME="jekyll"
ENV_USE_TEMPLATE="alpine"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Maintainer info
2025-11-29 11:07:00 -05:00
ENV_ORG_NAME="casjaysdev"
2023-09-01 14:24:51 -04:00
ENV_VENDOR="CasjaysDev"
ENV_AUTHOR="CasjaysDev"
ENV_MAINTAINER="CasjaysDev <docker-admin@casjaysdev.pro>"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2025-11-29 11:07:00 -05:00
# Repository URLs (Full URLs)
ENV_GIT_REPO_URL="https://github.com/casjaysdev/jekyll"
ENV_REGISTRY_URL="docker.io/casjaysdev/jekyll"
2023-09-01 14:24:51 -04:00
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2025-11-29 11:07:00 -05:00
# Push Configuration
ENV_IMAGE_PUSH="casjaysdev/jekyll"
2023-09-01 14:24:51 -04:00
ENV_IMAGE_TAG="latest"
2025-11-29 11:07:00 -05:00
ENV_ADD_TAGS="USE_DATE"
2023-09-01 14:24:51 -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=""
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
2025-11-29 11:07:00 -05:00
# Pull Configuration
ENV_PULL_URL="ruby"
ENV_DISTRO_TAG="3.3-alpine"
2023-09-01 14:24:51 -04:00
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Env
2025-11-29 11:07:00 -05:00
SERVICE_PORT="4000"
EXPOSE_PORTS="4000"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# IF using a lanuage such as go, php, rust, ruby, etc set the version here.
LANG_VERSION="latest"
2023-09-01 14:24:51 -04:00
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Versions
PHP_VERSION="system"
NODE_VERSION="system"
NODE_MANAGER="system"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# 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"
2025-09-16 19:37:33 -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"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# ex: ts=2 sw=2 et filetype=sh
2025-09-16 19:37:33 -04:00
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -