Files
ubuntu/.env.scripts.20.04
T
jason b1ff5c5e37
Build and Push 18.04 / build (push) Waiting to run
Build and Push 20.04 / build (push) Waiting to run
Build and Push 22.04 / build (push) Waiting to run
Build and Push 24.04 / build (push) Waiting to run
Build and Push 24.10 / build (push) Waiting to run
Build and Push 26.04 / build (push) Waiting to run
Build and Push / build (push) Waiting to run
🐛 Fix OCI labels and git repo env URLs 🐛
image.url must be the browsable hub.docker.com/r page — docker.io
is only a registry pull host. source/doc labels and
ENV_GIT_REPO_URL now point at the real dockersrc GitHub repo.

- Dockerfile: image.url → https://hub.docker.com/r/casjaysdev/ubuntu; source/doc → https://github.com/dockersrc/ubuntu
- Dockerfile.18.04: image.url fixed; registry-host source label dropped
- Dockerfile.20.04: image.url fixed; registry-host source label dropped
- Dockerfile.22.04: image.url fixed; registry-host source label dropped
- Dockerfile.24.04: image.url fixed; registry-host source label dropped
- Dockerfile.24.10: image.url fixed; registry-host source label dropped
- Dockerfile.26.04: image.url fixed; source → https://github.com/dockersrc/ubuntu
- .env.scripts: ENV_GIT_REPO_URL → https://github.com/dockersrc/ubuntu
- .env.scripts.18.04: ENV_GIT_REPO_URL → https://github.com/dockersrc/ubuntu
- .env.scripts.20.04: ENV_GIT_REPO_URL → https://github.com/dockersrc/ubuntu
- .env.scripts.22.04: ENV_GIT_REPO_URL → https://github.com/dockersrc/ubuntu
- .env.scripts.24.04: ENV_GIT_REPO_URL → https://github.com/dockersrc/ubuntu
- .env.scripts.24.10: ENV_GIT_REPO_URL → https://github.com/dockersrc/ubuntu
- .env.scripts.26.04: ENV_GIT_REPO_URL → https://github.com/dockersrc/ubuntu
2026-08-14 14:43:33 -04:00

85 lines
3.6 KiB
Bash

# - - - - - - - - - - - - - - - - - - - - - - - - -
##@Version : 202605242112-git
# @@Author : CasjaysDev
# @@Contact : CasjaysDev <docker-admin@casjaysdev.pro>
# @@License : MIT
# @@Copyright : Copyright 2026 CasjaysDev
# @@Created : Sun May 24 09:12:37 PM EDT 2026
# @@File : .env.scripts.20.04
# @@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,SC2090,SC2115,SC2120,SC2155,SC2199,SC2229,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.20.04"
# ENV_REGISTRY_REPO: Registry repository/image name
ENV_REGISTRY_REPO="ubuntu"
ENV_USE_TEMPLATE="ubuntu"
# - - - - - - - - - - - - - - - - - - - - - - - - -
# Maintainer info
ENV_REGISTRY_ORG="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/dockersrc/ubuntu"
# 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="casjaysdev/ubuntu"
# ENV_IMAGE_TAG: Default tag for the image
ENV_IMAGE_TAG="20.04"
# ENV_ADD_TAGS: Additional tags, comma-separated (USE_DATE = auto date tag)
ENV_ADD_TAGS=""
# - - - - - - - - - - - - - - - - - - - - - - - - -
# Additional push destinations (if needed)
ENV_ADD_IMAGE_PUSH=""
# - - - - - - - - - - - - - - - - - - - - - - - - -
# Pull Configuration
# ENV_PULL_URL: Source image to pull from (base image)
ENV_PULL_URL="casjaysdev/ubuntu"
# ENV_DISTRO_TAG: Tag for the pull source image
ENV_DISTRO_TAG="${IMAGE_VERSION}"
# - - - - - - - - - - - - - - - - - - - - - - - - -
# Env
SERVICE_PORT=""
EXPOSE_PORTS=""
# - - - - - - - - - - - - - - - - - - - - - - - - -
# IF using a lanuage such as go, php, rust, ruby, etc set the version here.
LANG_VERSION=""
# - - - - - - - - - - - - - - - - - - - - - - - - -
# 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 tini xz-utils iproute2 pinentry-curses bsd-mailx procps net-tools bsd-mailx postfix python3-pip ca-certificates"
# - - - - - - - - - - - - - - - - - - - - - - - - -
# ex: ts=2 sw=2 et filetype=sh
# - - - - - - - - - - - - - - - - - - - - - - - - -