- Add mk_base_image script,
- Add mk_base_image bash completion config, - Add GPL headers, - Add SPEC files to generate docker_tools & docker_tools-devel RPM packages, - Now support rx3-base 1.1.0.
This commit is contained in:
@@ -1,20 +1,66 @@
|
||||
#!/bin/bash
|
||||
#-------------------------------------------------------------------------------
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
#
|
||||
# Docker Tools Install
|
||||
#
|
||||
# Copyright (C) 2024-2026 Arnaud G. GIBERT
|
||||
# mailto:arnaud@rx3.net
|
||||
#
|
||||
# This is free software: you can redistribute it and/or modify it
|
||||
# under the terms of the GNU Lesser General Public License as published
|
||||
# by the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
set -o errexit
|
||||
|
||||
|
||||
# Include
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
. /usr/lib/rx3/docker_tools.bash
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# Global Variables
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
if [[ "${DOCKER_TOOLS_DEBUG:-}" == "TRUE" ]]
|
||||
then
|
||||
set -x
|
||||
fi
|
||||
|
||||
dt_appl_home_get "${1:-}"
|
||||
|
||||
DOCKER_TOOLS_HOME_DIR="$(dirname "$(dirname "$0")")"
|
||||
|
||||
if [[ "$1" == "" ]]
|
||||
|
||||
|
||||
if [[ "${1:-}" == "" ]]
|
||||
then
|
||||
APPL_HOME_DIR="$PWD"
|
||||
else
|
||||
APPL_HOME_DIR="$1"
|
||||
APPL_HOME_DIR="${1}"
|
||||
fi
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# Link Create
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
function link_create
|
||||
{
|
||||
source="$1"
|
||||
@@ -37,12 +83,25 @@ function link_create
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# Main
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
DOCKER_TOOLS_HOME_DIR=$( realpath --relative-to ${APPL_HOME_DIR} ${DOCKER_TOOLS_HOME_DIR})
|
||||
cd ${APPL_HOME_DIR}
|
||||
|
||||
#docker_tools_home_dir=$( realpath --relative-to ${APPL_HOME_DIR} ${DOCKER_TOOLS_HOME_DIR})
|
||||
|
||||
docker_tools_home_dir=$( realpath ${DOCKER_TOOLS_HOME_DIR})
|
||||
|
||||
|
||||
#link_create ${docker_tools_home_dir}/sbin .
|
||||
|
||||
mkdir ${docker_tools_home_dir}/sbin
|
||||
for cmd in docker_build_push docker_logs docker_mk_dir docker_mk_env docker_network_down docker_network_up docker_restart docker_sbs docker_start docker_stop
|
||||
do
|
||||
ln -s /usr/sbin/${cmd} ${docker_tools_home_dir}/sbin
|
||||
done
|
||||
|
||||
link_create ${DOCKER_TOOLS_HOME_DIR}/sbin .
|
||||
|
||||
link_create env.dist env
|
||||
|
||||
Reference in New Issue
Block a user