more docker changes
This commit is contained in:
parent
759b05e137
commit
7592c11e99
|
@ -6,9 +6,9 @@ TRMM_USER=tactical
|
||||||
TRMM_PASS=tactical
|
TRMM_PASS=tactical
|
||||||
|
|
||||||
# dns settings
|
# dns settings
|
||||||
APP_HOST=app.simplermm.com
|
APP_HOST=app.example.com
|
||||||
API_HOST=api.simplermm.com
|
API_HOST=api.example.com
|
||||||
MESH_HOST=mesh.simplermm.com
|
MESH_HOST=mesh.example.com
|
||||||
|
|
||||||
# mesh settings
|
# mesh settings
|
||||||
MESH_USER=meshcentral
|
MESH_USER=meshcentral
|
||||||
|
|
|
@ -5,12 +5,11 @@
|
||||||
set -o errexit
|
set -o errexit
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
# tactical-frontend tactical-nginx tactical-salt --no-cache
|
DOCKER_IMAGES="tactical tactical-meshcentral tactical-frontend tactical-nginx tactical-salt"
|
||||||
DOCKER_IMAGES="tactical"
|
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
for DOCKER_IMAGE in ${DOCKER_IMAGES}; do
|
for DOCKER_IMAGE in ${DOCKER_IMAGES}; do
|
||||||
echo "Building Tactical Image: ${DOCKER_IMAGE}..."
|
echo "Building Tactical Image: ${DOCKER_IMAGE}..."
|
||||||
docker build --pull --build-arg BUILD_DATE="$(date -u +'%Y-%m-%dT%H:%M:%SZ')" -t "${DOCKER_IMAGE}" -f "docker/containers/${DOCKER_IMAGE}/dockerfile" .
|
docker build --pull --no-cache --build-arg BUILD_DATE="$(date -u +'%Y-%m-%dT%H:%M:%SZ')" -t "${DOCKER_IMAGE}" -f "docker/containers/${DOCKER_IMAGE}/dockerfile" .
|
||||||
done
|
done
|
Loading…
Reference in New Issue