"how to silent install postgresql in ubuntu via. dockerfile?" Code Answer

5

add this to your dockerfile

arg debian_frontend=noninteractive

before installing postgresql

and i think you may want to use apt-get instead of apt to avoid this warning:

warning: apt does not have a stable cli interface. use with caution in scripts.

By Satish Sharma on August 26 2022

Answers related to “how to silent install postgresql in ubuntu via. dockerfile?”

Only authorized users can answer the Search term. Please sign in first, or register a free account.