13 lines
251 B
Bash
Executable file
13 lines
251 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
|
|
|
|
|
|
|
|
docker build \
|
|
-f ./config-postgresql/Dockerfile \
|
|
-t ${POSTGRES_IMAGE} .
|