You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
212 B
11 lines
212 B
4 years ago
|
#!/bin/bash
|
||
4 years ago
|
set -e
|
||
|
source $(dirname $0)/rootdir.sh #set ROOTDIR
|
||
4 years ago
|
docker run \
|
||
|
-d \
|
||
|
--rm \
|
||
|
--name u_db \
|
||
|
-e POSTGRES_PASSWORD=12348756 \
|
||
4 years ago
|
-v $ROOTDIR/data:/var/lib/postgresql/data \
|
||
4 years ago
|
postgres
|