rebased-podman/20-create-db.sh
2022-11-11 20:42:08 +00:00

16 lines
294 B
Bash
Executable file

#!/bin/bash
source ./script_config.sh
mkdir ./postgres -p
podman run -d \
--name rebased-db \
--pod rebased-pod \
-e POSTGRES_USER=$PG_USER \
-e POSTGRES_PASSWORD=$PG_PASS \
-e POSTGRES_DB=$PG_NAME \
-v ./postgres:/var/lib/postgresql/data \
postgres:14.6-alpine