File: docker-entrypoint.sh

package info (click to toggle)
tilemaker 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 78,284 kB
  • sloc: cpp: 28,715; ansic: 4,052; makefile: 180; ruby: 77; sh: 6
file content (9 lines) | stat: -rwxr-xr-x 577 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 /tilemaker "$@"