commit | 5d7a1cbe7796bc840046a43d33527f78359091c1 | [log] [tgz] |
---|---|---|
author | Nico Huber <nico.h@gmx.de> | Sun Jul 23 19:36:14 2023 +0000 |
committer | Nico Huber <nico.h@gmx.de> | Tue Jul 25 10:07:10 2023 +0000 |
tree | 05506173c68cbfe2fe36ed71bd7cd35a68e0bba2 | |
parent | c3497aaff334c418015498f487ca559741f059df [diff] [blame] |
Add PostgreSQL with DB for Keycloak
diff --git a/postgres/docker/Dockerfile b/postgres/docker/Dockerfile new file mode 100644 index 0000000..4b4874f --- /dev/null +++ b/postgres/docker/Dockerfile
@@ -0,0 +1,7 @@ +FROM postgres:15-alpine + +COPY entrypoint /sa-entrypoint +RUN chmod 544 /sa-entrypoint + +ENTRYPOINT ["/bin/sh", "/sa-entrypoint"] +CMD ["postgres"]