container run 起來之後:
PostgreSQL:
docker exec -it {db-container-name} psql -U postgres- 以預設 user
postgres連進 DB
- 以預設 user
create user {username} with password '{password}';create database {database_name} with owner {username};
container run 起來之後:
PostgreSQL:
docker exec -it {db-container-name} psql -U postgrespostgres 連進 DBcreate user {username} with password '{password}';create database {database_name} with owner {username};
Update your browser to view this website correctly. Update my browser now