Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Postgres

Start the Postgres server in a Docker container

$ docker run -d -e POSTGRES_PASSWORD=password -p 5432:5432 --name postgres postgres:latest

At the end shut it down:

$ docker container stop postgers