7 lines
152 B
Bash
Executable file
7 lines
152 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
source ./0.variables.env
|
|
|
|
docker build \
|
|
-f ./config-postgresql/Dockerfile \
|
|
-t "postgres15-$POSTGRESQL_PORT-image" .
|