mirror of
				https://github.com/dockersrc/archlinux
				synced 2025-11-03 19:02:15 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			80 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 | 
						|
##@Version           :  202509171500-git
 | 
						|
# @@Author           :  CasjaysDev
 | 
						|
# @@Contact          :  CasjaysDev <docker-admin@casjaysdev.pro>
 | 
						|
# @@License          :  MIT
 | 
						|
# @@Copyright        :  Copyright 2025 CasjaysDev
 | 
						|
# @@Created          :  Wed Sep 17 03:00:46 PM EDT 2025
 | 
						|
# @@File             :  .env.scripts
 | 
						|
# @@Description      :  Variables for gen-dockerfile and buildx scripts
 | 
						|
# @@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
 | 
						|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 | 
						|
# 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"
 | 
						|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 | 
						|
# Dockerfile info
 | 
						|
ENV_DOCKERFILE="Dockerfile"
 | 
						|
ENV_IMAGE_NAME="archlinux"
 | 
						|
ENV_USE_TEMPLATE="archlinux"
 | 
						|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 | 
						|
# Maintainer info
 | 
						|
ENV_ORG_NAME="casjaysdev"
 | 
						|
ENV_VENDOR="CasjaysDev"
 | 
						|
ENV_AUTHOR="CasjaysDev"
 | 
						|
ENV_MAINTAINER="CasjaysDev <docker-admin@casjaysdev.pro>"
 | 
						|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 | 
						|
# Repository URLs (Full URLs)
 | 
						|
# ENV_GIT_REPO_URL: Complete Git repository URL for source code
 | 
						|
ENV_GIT_REPO_URL="https://github.com/casjaysdevdocker/archlinux"
 | 
						|
# ENV_REGISTRY_URL: Complete registry URL for reference (NOT used for pushing)
 | 
						|
ENV_REGISTRY_URL="docker.io/casjaysdevdocker/archlinux"
 | 
						|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 | 
						|
# Push Configuration
 | 
						|
# ENV_IMAGE_PUSH: Complete push destination (this IS used for pushing)
 | 
						|
ENV_IMAGE_PUSH="casjaysdev/archlinux"
 | 
						|
# ENV_IMAGE_TAG: Default tag for the image
 | 
						|
ENV_IMAGE_TAG="latest"
 | 
						|
# ENV_ADD_TAGS: Additional tags, comma-separated (USE_DATE = auto date tag)
 | 
						|
ENV_ADD_TAGS="USE_DATE"
 | 
						|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 | 
						|
# Additional push destinations (if needed)
 | 
						|
ENV_ADD_IMAGE_PUSH=""
 | 
						|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 | 
						|
# Pull Configuration
 | 
						|
# ENV_PULL_URL: Source image to pull from (base image)
 | 
						|
ENV_PULL_URL="ghcr.io/dockersrc/archlinux"
 | 
						|
# ENV_DISTRO_TAG: Tag for the pull source image
 | 
						|
ENV_DISTRO_TAG="base"
 | 
						|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 | 
						|
# Env
 | 
						|
SERVICE_PORT=""
 | 
						|
EXPOSE_PORTS=""
 | 
						|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 | 
						|
# Versions
 | 
						|
PHP_VERSION="system"
 | 
						|
NODE_VERSION="system"
 | 
						|
NODE_MANAGER="system"
 | 
						|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 | 
						|
# 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"
 | 
						|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 | 
						|
ENV_PACKAGES="bash-completion git curl wget sudo unzip base-devel mailx postfix python python-pip certbot ca-certificates jq "
 | 
						|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 | 
						|
# ex: ts=2 sw=2 et filetype=sh
 | 
						|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 |