rebased-podman/20-create-db.sh
2022-11-11 15:31:47 +00:00

17 lines
323 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 \
-v ./config:/config:ro \
postgres:14.6-alpine