mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-03-31 13:35:08 -05:00
9 lines
327 B
Plaintext
Executable File
9 lines
327 B
Plaintext
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"
|