File: docker-entrypoint.sh

package info (click to toggle)
tilemaker 3.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 83,488 kB
  • sloc: cpp: 29,461; ansic: 12,510; makefile: 229; ruby: 77; sh: 43
file content (9 lines) | stat: -rwxr-xr-x 590 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#!/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 "$@"