5 lines
119 B
Makefile
5 lines
119 B
Makefile
|
|
.PHONY: run-postgres
|
||
|
|
|
||
|
|
run-postgres:
|
||
|
|
docker run --rm -it -e POSTGRES_PASSWORD=guest -p 127.0.0.1:5432:5432 postgres:17
|