mirror of
https://github.com/systemed/tilemaker
synced 2026-03-20 02:53:00 +01:00
9 lines
590 B
Bash
Executable file
9 lines
590 B
Bash
Executable file
#!/bin/sh
|
|
echo "--------------------------------------------------------------------------------" >&2
|
|
echo "DOCKER WARNING: Docker Out Of Memory handling can be unreliable." >&2
|
|
echo "DOCKER WARNING: If your program unexpectedly exits, it might have been terminated by the Out Of Memory killer without a visible notice." >&2
|
|
echo "DOCKER WARNING: The --store option can be used to partly reduce memory usage." >&2
|
|
echo "--------------------------------------------------------------------------------" >&2
|
|
|
|
# Proceed to run the command passed to the script
|
|
exec /usr/src/app/tilemaker "$@"
|