Tá an tiomantas seo le fáil i:
2026-02-28 22:28:37 +01:00
tuismitheoir 08e9ff37fd
tiomantas d901997654
D'athraigh 4 comhad le 202 breiseanna agus 0 scriosta

12
Services/postgres.README Comhad gnáth
Féach ar an gComhad

@@ -0,0 +1,12 @@
# Create DB
Create User
$ podman exec -it postgres psql -U postgres -c "CREATE USER [nome_progetto] WITH password '[password_db_progetto]';"
Or with CREATEDB
$ podman exec -it postgres psql -U postgres -c "CREATE USER [nome_progetto] WITH password '[password_db_progetto]' CREATEDB;"
Create DB
$ podman exec -it postgres psql -U postgres -c "CREATE DATABASE [nome_progetto];"
$ podman exec -it postgres psql -U postgres -c "GRANT ALL privileges ON DATABASE [nome_progetto] TO [nome_progetto];"
$ podman exec -it postgres psql -U postgres -d [nome_progetto] -c "GRANT CREATE ON SCHEMA public TO [nome_progetto];"