odoov18-compta/2.build.postgresql.sh

13 lines
299 B
Bash
Executable file

#!/bin/bash
set -euo pipefail
source ./0.variables.env
echo "" >> ./0.variables.env
echo "export POSTGRES_IMAGE=postgres15-${POSTGRES_PORT}-image" >> ./0.variables.env
POSTGRES_IMAGE=postgres15-${POSTGRES_PORT}-image
docker build \
-f ./config-postgresql/Dockerfile \
-t ${POSTGRES_IMAGE} .