File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ LABEL author="Daniel Barton" maintainer="danielb@purpleflaghosting.com"
1414
1515ENV DEBIAN_FRONTEND=noninteractive
1616
17+ ENV YOLK_EOL_NAG_WARNING=1
18+
1719RUN apt-get update -y && apt-get install -y --no-install-recommends \
1820 gettext-base \
1921 libnss-wrapper \
Original file line number Diff line number Diff line change 11#! /bin/bash
22cd /home/container || { echo " Could not change to /home/container directory! Exiting." ; exit 1; }
33
4+
5+ # Check for end-of-life marker
6+ if [ " ${YOLK_EOL_NAG_WARNING+x} " ]; then
7+ echo " ======================================================================"
8+ echo " DEPRECATION WARNING:"
9+ echo " This version of MariaDB has been marked as end-of-life."
10+ echo " Please migrate to a supported version as soon as possible to ensure"
11+ echo " continued security updates and support."
12+ echo " This image will be removed/disabled in the near future."
13+ echo " ======================================================================"
14+
15+ echo " Execution will continue in ${YOLK_EOL_NAG_DELAY:- 10} seconds..."
16+ sleep " ${YOLK_EOL_NAG_DELAY:- 10} "
17+ fi
18+
19+
420# Make internal Docker IP address available to processes.
521INTERNAL_IP=$( ip route get 1 | awk ' {print $(NF-2);exit}' )
622export INTERNAL_IP
You can’t perform that action at this time.
0 commit comments