16 lines
294 B
Bash
16 lines
294 B
Bash
|
#!/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
|
||
|
|