Fixing the unnecessary integration of POSTGRES_USER from healthcheck

This commit is contained in:
Torsten Raudssus 2024-03-31 21:59:43 +02:00
parent 8a1a8a4e5b
commit af2ea1924c

View file

@ -57,4 +57,4 @@ EXPOSE 5432
CMD ["postgres","-c","listen_addresses=*"]
HEALTHCHECK --interval=30s --timeout=3s --retries=4 \
CMD pg_isready -U ${POSTGRES_USER:-postgres}
CMD pg_isready -U postgres