Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 808 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 808 Bytes

Let’s Go Further helps you extend and expand your knowledge of Go — taking you beyond the basics and guiding you through advanced patterns for developing, managing and deploying APIs and web applications.

You can buy it here Let's Go

In this repository, you can read the code source code.

Create our PostgreSQL database, version 16.2 called greenlight-postgres

docker run --name greenlight-postgres -e POSTGRES_PASSWORD=1234 -p 5432:5432 -d postgres:16.2

Run psql inside Docker with root user (postgres name):

docker exec -it greenlight-postgres psql -U postgres

Run psql inside Docker with greenlight user in greenlight database:

docker exec -it greenlight-postgres psql --dbname=greenlight --username=greenlight