odoov18-compta/2.build.postgresql.sh

14 lines
299 B
Bash
Raw Normal View History

2026-04-20 17:51:59 +00:00
#!/bin/bash
set -euo pipefail
2026-04-21 09:23:43 +00:00
source ./0.variables.env
2026-04-20 17:51:59 +00:00
2026-05-27 18:19:37 +00:00
echo "" >> ./0.variables.env
echo "export POSTGRES_IMAGE=postgres15-${POSTGRES_PORT}-image" >> ./0.variables.env
2026-05-28 06:42:13 +00:00
POSTGRES_IMAGE=postgres15-${POSTGRES_PORT}-image
2026-05-27 18:19:37 +00:00
2026-05-27 13:37:08 +00:00
2026-04-05 08:52:57 +00:00
docker build \
2026-04-21 09:55:28 +00:00
-f ./config-postgresql/Dockerfile \
2026-05-27 18:19:37 +00:00
-t ${POSTGRES_IMAGE} .