Skip to content

Latest commit

 

History

History
34 lines (32 loc) · 1.35 KB

start_postgres.md

File metadata and controls

34 lines (32 loc) · 1.35 KB

Создание БД PostgreSQL

Где постгрес?

1 Подключаемся к PostgreSQL

#               ContainerId  shell mode
docker exec -it dd4a9e6684d1 sh
#       username
psql -U sixhands

1 Подлючаемся к PostgreSQL

sudo -u postgres psql

2 Создать БД + пользователя с правами

CREATE DATABASE <myproject>;
CREATE USER gardiys WITH PASSWORD 'password';
ALTER ROLE gardiys SET client_encoding TO 'utf8';
ALTER ROLE gardiys SET default_transaction_isolation TO 'read committed';
ALTER ROLE gardiys SET timezone TO 'UTC';
GRANT ALL PRIVILEGES ON DATABASE <myproject> TO gardiys;

Как будем устанавливать?