-
Notifications
You must be signed in to change notification settings - Fork 14
/
build-local.sh
executable file
·37 lines (34 loc) · 1.54 KB
/
build-local.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/sh -e
# *********************************************************************
# ___ ___ ___ ___ ___
# / __| /_\ \ / /_\ / __| __|
# \__ \/ _ \ V / _ \ (_ | _|
# |___/_/_\_\_/_/_\_\___|___| ___ ___ ___
# / __|/ _ \| __|_ _\ \ / /_\ | _ \ __|
# \__ \ (_) | _| | | \ \/\/ / _ \| / _|
# |___/\___/|_| |_| \_/\_/_/ \_\_|_\___|
#
# -------------------------------------------------------------------
# PORTAINER-BACKUP
# https://github.com/SavageSoftware/portainer-backup
# -------------------------------------------------------------------
#
# This script compiles and builds the current project sources into
# a Docker container image for the local build platform/environment.
#
# *********************************************************************
# COPYRIGHT SAVAGESOFTWARE,LLC, @ 2022, ALL RIGHTS RESERVED
# *********************************************************************
# GET VERSION FROM PACKAGE.JSON
VERSION=$(node -p -e "require('./package.json').version")
# ------------------------------------------------
# BUILD DOCKER CONTAINER
# ------------------------------------------------
# perform docker image build on local system
# (https://hub.docker.com/repository/docker/savagesoftware/portainer-backup)
docker build \
--build-arg BUILDDATE="$(date -u +'%Y-%m-%dT%H:%M:%SZ')" \
--build-arg VERSION="$VERSION" \
--tag savagesoftware/portainer-backup:$VERSION \
--tag savagesoftware/portainer-backup:latest \
. $@