Engine initial commit

This commit is contained in:
Claude Brisson
2023-05-11 16:05:33 +02:00
parent 5321f452fd
commit a42d591d03
39 changed files with 1847 additions and 0 deletions

8
docker/run.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
grep -r '^smtp\.host' webapp.properties | sed -r -e 's/smtp\.host/SMTP_HOST/' -e 's/ //g' > .env
grep -r '^smtp\.port' webapp.properties | sed -r -e 's/smtp\.port/SMTP_PORT/' -e 's/ //g' >> .env
grep -r '^smtp\.user' webapp.properties | sed -r -e 's/smtp\.user/SMTP_USER/' -e 's/ //g' >> .env
grep -r '^smtp\.password' webapp.properties | sed -r -e 's/smtp\.password/SMTP_PASSWORD/' -e 's/ //g' >> .env
APP_UID=$(id -u) APP_GID=$(id -g) docker-compose up