Also see: https://hub.docker.com/_/postgres
docker run -it --rm -p 5432:5432 --name pg -e POSTGRES_PASSWORD=password postgres
$ docker exec -it pg /bin/bash
root@187961c81d2e:/# psql -U postgres
psql (14.2 (Debian 14.2-1.pgdg110+1))
Type "help" for help.
go run main.go
curl -X POST -H 'Content-Type: application/json' localhost:8080/tasks/ -d '{"name": "hello1"}'
http POST localhost:8080/tasks/ name=hello1
curl -X GET localhost:8080/tasks/1
http GET localhost:8080/tasks/1
curl -X GET localhost:8080/tasks/
http GET localhost:8080/tasks/
curl -X DELETE localhost:8080/tasks/1
http DELETE localhost:8080/tasks/1
curl -X DELETE localhost:8080/tasks/
http DELETE localhost:8080/tasks/
go test ./...