summaryrefslogtreecommitdiffstats
path: root/Dockerfile_postgresql
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-05-23 14:01:57 +0100
committerMatthew Lemon <y@yulqen.org>2024-05-23 14:01:57 +0100
commit84cdaedf5cbde6a60e2840ab35fcccf8106bd0f2 (patch)
tree7d650e6e53c31f5f69cc20932cf8e24144c11a1f /Dockerfile_postgresql
parent5f5a3de40a8d2fa9c6067c2b0fa567ff11419e80 (diff)
Local Docker environment is now runnable with make
Diffstat (limited to 'Dockerfile_postgresql')
-rw-r--r--Dockerfile_postgresql6
1 files changed, 6 insertions, 0 deletions
diff --git a/Dockerfile_postgresql b/Dockerfile_postgresql
new file mode 100644
index 0000000..9111660
--- /dev/null
+++ b/Dockerfile_postgresql
@@ -0,0 +1,6 @@
+FROM registry.redhat.io/rhel9/postgresql-16
+
+ENV POSTGRESQL_USER=postgres \
+ POSTGRESQL_PASSWORD=postgres
+
+CMD ["/usr/bin/run-postgresql"]