We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77603a5 commit 833e666Copy full SHA for 833e666
Makefile
@@ -58,3 +58,11 @@ docker_build_dev:
58
podman build \
59
--build-arg=PB_BUILD_VERSION=dev \
60
-t local/pushbits .
61
+
62
+.PHONY: run_postgres_debug
63
+ podman run \
64
+ --rm \
65
+ --name=postgres \
66
+ --network=host \
67
+ --env-file \
68
+ postgres-debug.env docker.io/library/postgres:15
postgres-debug.env
@@ -0,0 +1,3 @@
1
+POSTGRES_PASSWORD=pushbits
2
+POSTGRES_USER=pushbits
3
+POSTGRES_DB=pushbits
0 commit comments