mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-05 22:35:04 +01:00
8 lines
327 B
Text
Executable file
8 lines
327 B
Text
Executable file
#!/command/with-contenv /usr/bin/bash
|
|
# shellcheck shell=bash
|
|
declare -r log_prefix="[init-complete]"
|
|
declare -r end_time=$(date +%s)
|
|
declare -r start_time=${PAPERLESS_START_TIME_S}
|
|
|
|
echo "${log_prefix} paperless-ngx docker container init completed in $(($end_time-$start_time)) seconds"
|
|
echo "${log_prefix} Starting services"
|