4 lines
158 B
Makefile
4 lines
158 B
Makefile
.PHONY: run-postgres
|
|
|
|
run-postgres:
|
|
docker run --rm -it -e POSTGRES_PASSWORD=guest -v "./pgdata:/var/lib/postgresql/data" -p 127.0.0.1:5432:5432 postgres:17
|