Quellcode durchsuchen

Use entrypoint to sed some vars

andryyy vor 9 Jahren
Ursprung
Commit
d6e0c46b9a
1 geänderte Dateien mit 4 neuen und 0 gelöschten Zeilen
  1. 4 0
      data/Dockerfiles/postfix/postfix.sh

+ 4 - 0
data/Dockerfiles/postfix/postfix.sh

@@ -2,6 +2,10 @@
 
 trap "postfix stop" EXIT
 
+sed -i "/^user/c\user = ${DBUSER}" /opt/postfix/conf/sql/*
+sed -i "/^password/c\password = ${DBPASS}" /opt/postfix/conf/sql/*
+sed -i "/^dbname/c\dbname = ${DBNAME}" /opt/postfix/conf/sql/*
+
 postfix -c /opt/postfix/conf start
 
 sleep infinity