Add nano util package
This commit is contained in:
parent
a03403b882
commit
24cc4e5ace
2 changed files with 6 additions and 1 deletions
1
TODO.md
1
TODO.md
|
@ -4,5 +4,4 @@ All:
|
|||
PostgreSQL:
|
||||
*
|
||||
MariaDB:
|
||||
* upstream provided Healthcheck sets off a warning each time its called
|
||||
* generated sql has varying timestamps breaking the cache hash
|
|
@ -1,5 +1,11 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Create /etc/my.cnf to allow internal utils to JustWork:tm:
|
||||
echo "[mariadb-client]" > /etc/my.cnf
|
||||
echo "user = $MARIADB_USER" >> /etc/my.cnf
|
||||
echo "password = $MARIADB_PASSWORD" >> /etc/my.cnf
|
||||
|
||||
# Call upstreamed mariadb entrypoint.
|
||||
echo "Running docker-entrypoint"
|
||||
/usr/local/bin/docker-entrypoint.sh mariadbd
|
||||
|
||||
|
|
Loading…
Reference in a new issue