##// END OF EJS Templates
Se cambió la versión de python a 3.9.16
Se cambió la versión de python a 3.9.16

File last commit:

r367:9e304f85f976
r370:c991032395c2
Show More
create_db.sh
9 lines | 240 B | application/x-sh | BashLexer
#!/bin/bash
set -e
echo "Creating database & user"
psql -v --username "docker" --dbname "radarsys" <<-EOSQL
CREATE USER docker WITH PASSWORD 'docker';
CREATE DATABASE radarsys;
GRANT ALL PRIVILEGES ON DATABASE radarsys TO docker;
EOSQL