mirror of
https://github.com/Cian-H/iform-invenio.git
synced 2026-08-16 16:32:50 +01:00
9 lines
187 B
Bash
9 lines
187 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Start the cron service in the background
|
|
service cron start
|
|
|
|
# Pass execution back to the official postgres entrypoint
|
|
exec /usr/local/bin/docker-entrypoint.sh "$@"
|