Revision 6acd1bb62f42c8d1d8729221567dbb67381e8941 authored by Nicolas Thouvenin on 02 August 2024, 08:52:55 UTC, committed by Nicolas Thouvenin on 02 August 2024, 13:12:27 UTC
1 parent f1deabd
Raw File
docker-entrypoint.sh
#!/bin/sh
find /app/src/app/custom ! -user daemon -exec chown daemon:daemon {} \; &
find /tmp ! -user daemon -exec chown daemon:daemon {} \; &

# Allows you to override or add configuration files to a local instance
find /app/src/app/custom/exporters/ -name \*.ini -exec cp -v -f {} /app/workers/exporters/ \;
find /app/src/app/custom/routines/ -name \*.ini -exec cp -v -f {} /app/workers/routines/ \;
find /app/src/app/custom/loaders/ -name \*.ini -exec cp -v -f {} /app/workers/loaders/ \;

exec su-exec daemon:daemon $*
back to top