diff options
author | Yulqen <246857+yulqen@users.noreply.github.com> | 2024-05-23 15:35:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-23 15:35:49 +0100 |
commit | c89d53a2921e4e6b681c6a9dc97f7cc8eeb43956 (patch) | |
tree | 345d5259906a72a145095a6e465689d8d8a513d0 /Dockerfile_postgresql | |
parent | 88dacb9f57a40c96f48c359275fe11f85aa1f051 (diff) | |
parent | 5f9ca9b3e597a9dfda9ffb3af25a60b2c7309986 (diff) |
Merge pull request #50 from defencedigital/postgres-migration
Postgres migration
Diffstat (limited to 'Dockerfile_postgresql')
-rw-r--r-- | Dockerfile_postgresql | 6 |
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"] |