mirror of
https://github.com/spliit-app/spliit.git
synced 2026-02-09 00:56:12 +01:00
Without this, docker complained: ``` docker: Error response from daemon: create ./postgres-data: "./postgres-data" includes invalid characters for a local volume name, only "[a-zA-Z0-9][a-zA-Z0-9_.-]" are allowed. If you intended to pass a host directory, use absolute path. ``` Followed recommendation from https://stackoverflow.com/questions/46526165/docker-invalid-characters-for-volume-when-using-relative-paths
12 lines
401 B
Bash
Executable File
12 lines
401 B
Bash
Executable File
result=$(docker ps | grep postgres)
|
|
if [ $? -eq 0 ];
|
|
then
|
|
echo "postgres is already running, doing nothing"
|
|
else
|
|
echo "postgres is not running, starting it"
|
|
docker rm postgres --force
|
|
mkdir -p postgres-data
|
|
docker run --name postgres -d -p 5432:5432 -e POSTGRES_PASSWORD=1234 -v "/$(pwd)/postgres-data:/var/lib/postgresql/data" postgres
|
|
sleep 5 # Wait for postgres to start
|
|
fi
|