Install TimeTrex in PHP Docker image

This commit is contained in:
2022-06-12 01:30:09 -04:00
commit 9b26eabb7c
5 changed files with 82 additions and 0 deletions

10
docker-timetrex-entrypoint Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
function timetrex_set() {
sed -i '/^'"$1"' /s/=.*$/= '"$2"'/' /var/www/html/timetrex.ini.php
}
timetrex_set 'base_url' "${BASE_URL:=\/\/interface}"
timetrex_set 'password' "$POSTGRES_PASSWORD"
timetrex_set 'host' "$POSTGRES_HOST"
apache2-foreground